diff options
Diffstat (limited to 'webpack/webpack.common.js')
-rw-r--r-- | webpack/webpack.common.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack/webpack.common.js b/webpack/webpack.common.js index 6e0dd56f..ae32499a 100644 --- a/webpack/webpack.common.js +++ b/webpack/webpack.common.js @@ -1,4 +1,5 @@ /* eslint-disable @typescript-eslint/no-var-requires */ +// eslint-disable-next-line @typescript-eslint/no-unused-vars const webpack = require("webpack"); const path = require('path'); const CopyPlugin = require('copy-webpack-plugin'); @@ -33,7 +34,6 @@ module.exports = env => ({ }, output: { path: path.join(__dirname, '../dist/js'), - filename: '[name].js' }, optimization: { splitChunks: { |