-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.server.config.js
131 lines (128 loc) · 3.21 KB
/
webpack.server.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
process.env.NODE_ENV = '"production"'
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
console.log(`process.env.NODE_ENV: + ${process.env.NODE_ENV}`);
function resolve (dir) {
return path.join(__dirname, '.', dir)
}
module.exports = {
devtool: 'source-map',
entry: {
index: [resolve('src/server/server.js')],
vendor: ['react', 'react-dom','redux', 'react-redux', 'react-router', 'lodash', 'express'],
},
output: {
filename: '[name].js',
path: resolve('dist/server'),
publicPath: '/',
},
target: 'node',
module: {
rules: [
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: [{
loader: 'css-loader',
options: {
minimize: true,
modules: true
}
}]
})
},
{
test: /\.(png|svg|jpg|gif|eot|ttf|woff)$/,
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
useRelativePath: true,
outputPath: 'images/',
// publicPath: 'images/'
},
}]
},
{
test: /(\.jsx|\.js)$/,
include: [
resolve("src/client"),
resolve("src/server")
],
exclude: /(node_modules|bower_components)/,
loader: "babel-loader",
},
{
test: /(\.tsx|\.ts)$/,
include: [
resolve("src/server")
],
exclude: /(node_modules|bower_components)/,
loader: "ts-loader",
}
]
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
alias: {
'@': resolve("src/server")
}
},
plugins: [
new CleanWebpackPlugin(['dist/server']),
new webpack.BannerPlugin('版权所有,翻版必究'),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: process.env.NODE_ENV,
}
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: Infinity,
}),
// 压缩css和js
new UglifyJSPlugin({
uglifyOptions: {
output: {
comments: false,
beautify: false,
},
compress: {
warnings: false,
comparisons: false,
drop_console: true,
drop_debugger: true,
},
}
}),
new HtmlWebpackPlugin({
chunks: ['vendor', 'index'],
template: resolve('public/index.html'),
title: 'multi thunk',
filename: 'index.html',
inject: true
}),
new ExtractTextPlugin({
filename: (getPath) => {
console.log('show:' + JSON.stringify(getPath('[name].css')));
return getPath('[name].css');
},
allChunks: true
}),
// new CopyWebpackPlugin([{
// from: resolve('src/images'),
// to: './images'
// },
// {
// from: resolve('src/assets'),
// to: './assets'
// }
// ]),
]
}