-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathtdtool.config.js
68 lines (63 loc) · 1.57 KB
/
tdtool.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
const path = require('path');
const Config = require('tdtool').Config;
const isDebug = process.env.NODE_ENV !== 'production';
const clientConfig = new Config({
entry: {
cip: './client/index',
},
sourceMap: true,
devtool: 'source-map',
filename: '[name].[hash].js',
minimize: !isDebug,
disableCSSModules: true,
alias: {
'@': path.resolve(__dirname, 'client'),
},
extends: [
[
'react',
{
plugins: [['import', { libraryName: 'antd', style: true }]],
source: [path.resolve(__dirname, 'client')],
},
],
[
'less',
{
extractCss: {
filename: '[name].[hash].css',
allChunks: true,
},
happypack: true,
theme: {
'@primary-color': '#567bff',
},
},
],
],
env: {
__DEV__: isDebug,
},
});
clientConfig.add('output.path', path.join(process.cwd(), 'dist', 'client'));
clientConfig.add('output.publicPath', '/');
clientConfig.add('output.chunkFilename', '[name].[chunkhash].chunk.js');
const AssetsPlugin = require('assets-webpack-plugin');
clientConfig.add(
'plugin.AssetsPlugin',
new AssetsPlugin({
path: './dist/client',
filename: 'assets.json',
prettyPrint: true,
}),
);
const serverConfig = new Config({
entry: './server/index.js',
target: 'node',
filename: 'server.js',
sourceMap: true,
devServer: isDebug,
externals: [/^\.\/client\/assets\.json$/, require('webpack-node-externals')()],
});
serverConfig.add('resolve.extensions', ['.js']);
module.exports = [clientConfig.resolve(), serverConfig.resolve()];