-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
42 lines (40 loc) · 1.13 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
const path = require('path') // 引用path模块
const htmlWebpackPlugin = require('html-webpack-plugin');
module.exports = { // 这里是commrnt.js语法
// 入口文件
entry: "./src/index.js",
// 打包后的出口文件
output: {
// 输出的路径 是绝对路径(导入path模块) 这里是用node来做的
path: path.resolve(__dirname, 'build'),
// 输出的文件名称
filename: 'index.js',
},
// 使用开发模式打包
mode: "development",
plugins: [new htmlWebpackPlugin({
template: 'src/index.html'
}
)],
module: {
rules: [
{
test: /\.css$/i,
use: [
'style-loader', 'css-loader'
]
},
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 8192 //对图片的大小做限制,8kb
}
}
]
}
]
}
}