diff options
Diffstat (limited to 'apps/files/webpack.js')
-rw-r--r-- | apps/files/webpack.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/webpack.js b/apps/files/webpack.js index 8dbbad5081f..e83f14ad4e7 100644 --- a/apps/files/webpack.js +++ b/apps/files/webpack.js @@ -1,4 +1,4 @@ -const path = require('path'); +const path = require('path') module.exports = { entry: { @@ -11,6 +11,6 @@ module.exports = { path: path.resolve(__dirname, './js/dist/'), publicPath: '/js/', filename: '[name].js', - chunkFilename: 'files.[id].js' - } + chunkFilename: 'files.[id].js', + }, } |