-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
77 lines (72 loc) · 1.76 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const isProd = process.env.NODE_ENV === 'production';
const theme = {
'primary-color': '#13939E',
'header-height': '40px',
};
module.exports = {
resolve: {
extensions: ['.js', '.json', '.jsx', '.ts', '.tsx'],
},
entry: path.join(__dirname, 'src/index.tsx'),
output: {
path: path.join(__dirname, 'dist'),
filename: 'main.js',
},
module: {
rules: [
{
test: /\.(ts|tsx|js|jsx)$/,
use: 'babel-loader',
exclude: path.join(__dirname, 'node_modules'),
},
{
test: /\.(css|less)$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
// options: {
// esModule: false,
// },
},
{
loader: 'css-loader',
options: {
modules: {
auto: (resourcePath) => resourcePath.endsWith('.module.less'), // 匹配.less文件来进行css模块化。
localIdentName: '[local]_[hash:base64:10]',
},
// esModule: false,
},
},
{
loader: 'less-loader',
options: {
lessOptions: {
javascriptEnabled: true,
modifyVars: theme,
},
},
},
],
},
],
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.join(__dirname, './main.html'),
inject: true,
}),
new MiniCssExtractPlugin(),
],
devServer: {
port: 8080,
hot: true,
compress: true,
allowedHosts: 'all',
historyApiFallback: true,
},
};