diff options
Diffstat (limited to '')
| -rw-r--r-- | webpack.config.js | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 3747a07..06fcf21 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,6 +1,6 @@  const path = require("path")  const HtmlWebpackPlugin = require("html-webpack-plugin"); -const CopyPlugin = require('copy-webpack-plugin'); +const CopyPlugin = require("copy-webpack-plugin");  const webpack = require("webpack")  if (process.env.NODE_ENV === "development") { require("dotenv").config(); } @@ -96,5 +96,7 @@ module.exports = {      }), new HtmlWebpackPlugin({          inject: true,          template: 'public/index.html' +    }), new webpack.SourceMapDevToolPlugin({ +        filename: "[file].map[query]"      })]  }  |