-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.1.js
76 lines (74 loc) · 1.89 KB
/
webpack.dev.1.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
'use strict';
const path = require('path');
const webpack = require('webpack');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
// 多入口文件配置
entry: {
index: './src/index.js',
search: './src/search.js'
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js'
},
mode: 'development', // production
module: {
rules: [
// 配置js
{
test: /.js$/,
use: 'babel-loader'
},
// 配置css
{
test: /.css$/,
use: [
'style-loader',
'css-loader'
]
},
// 配置less转css
{
test: /.less$/,
use: [
'style-loader',
'css-loader',
'less-loader'
]
},
// 配置图片
// {
// test: /.(png|jpg|gif|jpeg)$/,
// use: 'file-loader'
// },
// 使用url可以对小图片进行base64转换,优于file-loader
{
test: /.(png|jpg|gif|jpeg)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10240
}
}
]
},
// 配置文字
{
test: /.(woff|woff2|eot|ttf|otf)$/,
use: 'file-loader'
}
]
},
plugins: [
// 模块热更新
new webpack.HotModuleReplacementPlugin(),
new CleanWebpackPlugin()
],
devServer: {
// 指定热更新位置
contentBase: './dist',
hot: true
}
};