diff options
| author | julian laplace <julescarbon@gmail.com> | 2025-07-07 14:41:20 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2025-07-07 14:41:20 +0200 |
| commit | 95a494a5570ba7933943cfe2093f1357c5f087f4 (patch) | |
| tree | c99ecbcf879bf567dfff66f3825a10ea7a5d26c2 /webpack.config.js | |
| parent | 966e3b080f039fa1c62113e75e1e1481d7e19439 (diff) | |
number sequences
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 3b2bf92..53a9815 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -3,10 +3,13 @@ var webpack = require('webpack'); module.exports = { entry: './client/index.js', watch: true, - devtool: 'cheap-source-map', + devtool: 'cheap-source-map', output: { filename: './bundle.js' }, + resolve: { + modules: ['./node_modules'], + }, module: { rules: [ { |
