-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
60 lines (59 loc) · 1.24 KB
/
webpack.config.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* @Author: victorsun
* @Date: 2022-05-04 20:13:37
* @LastEditors: victorsun
* @LastEditTime: 2022-06-09 03:19:43
* @Descripttion:
*/
const path = require('path');
const fs = require('fs');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
module.exports = {
entry: path.resolve(__dirname, './src/index.js'),
output: {
path: path.resolve(__dirname, './dist'),
clean: true,
},
mode: 'development',
devServer: {
port: 4096,
hot: true,
// https
// disableHostCheck: true,
allowedHosts: [
'*',
'localhost',
'local.csxiaoyao.test',
],
https: {
key: fs.readFileSync('./local.csxiaoyao.test-key.pem'),
cert: fs.readFileSync('./local.csxiaoyao.test.pem'),
},
},
resolve: {},
module: {
rules: [
{
test: /\.js$/,
use: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
exclude: /node_modules/,
},
],
},
plugins: [
new CopyPlugin({
patterns: [
{ from: 'public', to: 'public' },
],
}),
new HtmlWebpackPlugin({
template: './src/index.html',
}),
],
};