-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.client.js
37 lines (35 loc) · 1.27 KB
/
webpack.client.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
const path = require('path');
const merge = require('webpack-merge');
const config = require('./webpack.base.js');
const clientConfig = {
mode: 'development',
entry: './src/client/index.js',
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'public'),
},
module: {
rules: [
{
test: /\.css?$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1,
modules: true,
localIdentName: '[name]_[local]_[hash:base64:5]',
},
},
],
},
],
},
};
module.exports = merge(config, clientConfig);
// webpack帮我们打包服务器端的代码的时候
// 我们要加添加 你要区分我们打包的是哪个端的代码 客户端所有都打进bundle.js 服务端不需要
// 虽然这个地方我们使用的是mode 他不会把核心模块打包进去 实际上 在我们引入一些node_modules的包的时候,光用target_node还不行
// 还要在介入一个组件 webpack-node-externals 比如我们引用express的时候 他不会吧node_modules里面的express打包进文件里面,还保留之前的引用形式
// webpack4 要区分 你打包的是线上环境还是测试环境 需要配置mode