diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-18 17:04:21 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-18 17:47:10 +0200 |
commit | 16af12e0a045c6bf19cbd7ba8a012e4145065c29 (patch) | |
tree | 71b1e03348049e5cb87155374f8fb88c3735ff17 /settings/webpack.common.js | |
parent | 38b1020f52dfefa6e025eb2de4512ab6b3d7ec48 (diff) | |
download | nextcloud-server-16af12e0a045c6bf19cbd7ba8a012e4145065c29.tar.gz nextcloud-server-16af12e0a045c6bf19cbd7ba8a012e4145065c29.zip |
Fixed webpack config, groups flex thanks to @juliushaertl and groups tooltip
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/webpack.common.js')
-rw-r--r-- | settings/webpack.common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/webpack.common.js b/settings/webpack.common.js index 3193df2c463..8810c302448 100644 --- a/settings/webpack.common.js +++ b/settings/webpack.common.js @@ -3,9 +3,9 @@ const path = require('path') module.exports = { entry: './src/main.js', output: { - path: path.resolve(__dirname, './dist'), + path: path.resolve(__dirname, './js'), publicPath: '/dist/', - filename: 'build.js' + filename: 'main.js' }, module: { rules: [ |