-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.client.js
39 lines (39 loc) · 1.05 KB
/
webpack.client.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
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
mode: "development",
entry: './client/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'public')
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.csr.html',
template: 'src/index.csr.html',
inject: true
})
],
module: {
rules: [
{
test: /\.js$/,
// 才能支持import,支持jsx
loader: 'babel-loader',
exclude: /node_modules/,
options: {
presets: ['@babel/preset-react', '@babel/preset-env']
}
},
{
test: /\.css$/,
use: ['style-loader', {
loader: 'css-loader',
options: {
modules: true // 开启css module的支持
}
}]
}
]
}
}