-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.dev.js
More file actions
64 lines (62 loc) · 1.63 KB
/
webpack.config.dev.js
File metadata and controls
64 lines (62 loc) · 1.63 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
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
const path = require("path");
const webpack = require("webpack");
const HtmlWebPackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
mode: "development",
devtool: "cheap-module-source-map",
devServer: {
contentBase: path.join(__dirname, "./src/"),
// publicPath: "/",
// host: "127.0.0.1",
// port: 3000,
stats: {
colors: true,
},
hot: true,
writeToDisk: true
},
entry: ["./src/index.jsx", "./src/dev.js"],
// 将 jsx 添加到默认扩展名中,省略 jsx
resolve: {
extensions: [".wasm", ".mjs", ".js", ".json", ".jsx"],
},
module: {
rules: [
{
test: /\.jsx?$/, // jsx文件的正则
exclude: /node_modules/, // 排除 node_modules 文件夹
use: {
// loader 是 babel
loader: "babel-loader",
options: {
// babel 转义的配置选项
babelrc: false,
presets: [
// 添加 preset-react
require.resolve("@babel/preset-react"),
[require.resolve("@babel/preset-env"), { modules: false }],
],
cacheDirectory: true,
},
},
},
{
test: /\.css$/,
use: [MiniCssExtractPlugin.loader, "css-loader"],
},
],
},
plugins: [
new HtmlWebPackPlugin({
template: "chrome-extension/eva.panel.html",
filename: "eva.panel.html",
inject: true,
}),
new webpack.HotModuleReplacementPlugin(),
new MiniCssExtractPlugin({
filename: "[name].css",
chunkFilename: "[id].css",
}),
],
};