-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
84 lines (80 loc) · 2.21 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
78
79
80
81
82
83
84
const path = require('path');
let HtmlWebpackPlugin = require('html-webpack-plugin');
let CleanWebpackPlugin = require('clean-webpack-plugin');
let ExtractTextWebpackPlugin = require('extract-text-webpack-plugin');
let webpack = require('webpack');
module.exports = {
entry: {
index: './src/index.js',
login: './src/login.js',
},
output: {
filename: '[name].[hash:8].js',
path: path.resolve('dist')
},
module: {
rules: [
{
test: /\.js$/,
use: "babel-loader",
include: /src/,
exclude: /node_modules/
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader?sourceMap'],
exclude: /node_modules/
},
{
test: /\.scss$/,
use: ExtractTextWebpackPlugin.extract({
use: ['css-loader', 'sass-loader'],
fallback: 'style-loader'
})
},
{
test: /\.(jpe?g|png|gif)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 8192, // 小于8k的图片自动转成base64格式,并且不会存在实体图片
outputPath: 'images/' // 图片打包后存放的目录
}
}
]
},
{
test: /\.(eot|ttf|woff|svg)$/,
use: 'file-loader'
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html',
filename: 'index.html',
chunks: ['index'],
// hash: true,
}),
new HtmlWebpackPlugin({
template: './src/login.html',
filename: 'login.html',
chunks: ['login'],
// hash: true,
}),
new CleanWebpackPlugin(),
new ExtractTextWebpackPlugin("[name].css"),
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(),
], // 对应的插件
devServer: {
contentBase: path.resolve(__dirname, 'dist'), // 配置开发服务运行时的文件根目录
compress: true, // 开发服务器是否启动gzip等压缩
host: 'localhost', // 开发服务器监听的主机地址
port: 5001, // 开发服务器监听的端口
hot: true, // 开启热跟新
open: true, // 自动打开浏览器
}, // 开发服务器配置
mode: 'development' // 模式配置
}