diff options
author | 2021-02-07 02:20:11 +0300 | |
---|---|---|
committer | 2021-02-07 02:21:07 +0300 | |
commit | 5f29cd5346f914f870b39b1b3bfbc77cb627a0c5 (patch) | |
tree | 993331a3ceed85267c72507d942a3be22c0db7c8 /webpack.config.js | |
parent | Simplify Workflow Installation (diff) | |
parent | Merge pull request #128 from python-discord/dependabot/npm_and_yarn/webpack-5... (diff) |
Merge branch 'main' into cleanup-depends
Signed-off-by: Hassan Abouelela <[email protected]>
# Conflicts:
# package.json
# yarn.lock
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 1cb543e..35c90a7 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -79,7 +79,12 @@ module.exports = { new CopyPlugin({ patterns: [{ from: 'public', - to: '.' + to: '.', + globOptions: { + ignore: [ + '**/index.html' + ] + } }, ], }), new webpack.EnvironmentPlugin({ NODE_ENV: "production", |