diff options
| author | こぴなたみぽ <Syuilotan@yahoo.co.jp> | 2017-08-12 20:23:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-12 20:23:21 +0900 |
| commit | 115c3d668c68af6fca16704ca34b8ab4dd8d624c (patch) | |
| tree | 7e9e1da8431e4ed6fb4cc47be0e9f19aeb2cb10f /webpack | |
| parent | chore(package): update @types/chai-http to version 3.0.2 (diff) | |
| parent | Merge pull request #685 from syuilo/greenkeeper/@types/chai-4.0.3 (diff) | |
| download | misskey-115c3d668c68af6fca16704ca34b8ab4dd8d624c.tar.gz misskey-115c3d668c68af6fca16704ca34b8ab4dd8d624c.tar.bz2 misskey-115c3d668c68af6fca16704ca34b8ab4dd8d624c.zip | |
Merge branch 'master' into greenkeeper/@types/chai-http-3.0.2
Diffstat (limited to 'webpack')
| -rw-r--r-- | webpack/webpack.config.ts | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/webpack/webpack.config.ts b/webpack/webpack.config.ts index 0154d3b191..5199285d55 100644 --- a/webpack/webpack.config.ts +++ b/webpack/webpack.config.ts @@ -14,10 +14,12 @@ module.exports = langs.map(([lang, locale]) => { // Entries const entry = { - 'desktop': './src/web/app/desktop/script.js', - 'mobile': './src/web/app/mobile/script.js', - 'dev': './src/web/app/dev/script.js', - 'auth': './src/web/app/auth/script.js' + desktop: './src/web/app/desktop/script.js', + mobile: './src/web/app/mobile/script.js', + stats: './src/web/app/stats/script.js', + status: './src/web/app/status/script.js', + dev: './src/web/app/dev/script.js', + auth: './src/web/app/auth/script.js' }; const output = { |