diff --git a/webpack.config.js b/webpack.config.js index 4dc7478..5df4c55 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,6 +5,7 @@ var buildPath = path.join(__dirname, 'dist'); module.exports = { context: srcPath, entry: path.join(srcPath, 'js', 'client.js'), + mode: "development", output: { path: buildPath, filename: "bundle.js" @@ -21,4 +22,4 @@ module.exports = { } ] } -}; \ No newline at end of file +};