-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.development.js
More file actions
39 lines (38 loc) · 1.34 KB
/
Copy pathwebpack.development.js
File metadata and controls
39 lines (38 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CspHtmlWebpackPlugin = require('csp-html-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const { merge } = require('webpack-merge')
const base = require('./webpack.config')
const path = require('path')
module.exports = merge(base, {
mode: 'development',
devtool: 'source-map', // Show the source map so we can debug when developing locally
devServer: {
host: 'localhost',
port: '40992',
hot: true, // Hot-reload this server if changes are detected
compress: true, // Compress (gzip) files that are served
static: {
directory: path.resolve(__dirname, 'app/dist'), // Where we serve the local dev server's files from
watch: true, // Watch the directory for changes
staticOptions: {
ignored: /node_modules/, // Ignore this path, probably not needed since we define directory above
},
},
},
plugins: [
new MiniCssExtractPlugin(),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'app/src/index.html'),
filename: 'index.html',
}),
new CspHtmlWebpackPlugin({
'base-uri': ["'self'"],
'object-src': ["'none'"],
'script-src': ["'self'"],
'style-src': ["'self'", "'unsafe-inline'"],
'frame-src': ["'none'"],
'worker-src': ["'none'"],
}),
],
})