diff options
author | bobzel <zzzman@gmail.com> | 2023-12-06 13:27:41 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-06 13:27:41 -0500 |
commit | e5c2c25f9d27e718eb34ec5f05c72c4cd1c22987 (patch) | |
tree | ad963e54d1100841c677b248c88cacaa945ac2da /webpack.config.js | |
parent | b80d27912cd6d8bc4fe039e52d16582bfbe72c74 (diff) |
catch mongo errors. delete (some) sessions from mongo. more package updates. cleanup of express-validator.
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/webpack.config.js b/webpack.config.js index 57dc27047..2085c297c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,20 +1,11 @@ /* eslint-disable node/no-unpublished-require */ const path = require('path'); const webpack = require('webpack'); -const CopyWebpackPlugin = require('copy-webpack-plugin'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); const { parsed } = require('dotenv').config(); const plugins = [ - // new CopyWebpackPlugin({ - // patterns: [ - // { - // from: 'deploy', - // to: path.join(__dirname, 'build'), - // }, - // ], - // }), new HtmlWebpackPlugin({ title: 'Caching', }), |