-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
121 lines (115 loc) · 2.88 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
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
const webpack = require('webpack')
, path = require('path')
, HtmlWebpackPlugin = require('html-webpack-plugin')
, HtmlWebpackPluginConfig = new HtmlWebpackPlugin({
template: './index.html',
filename: 'index.html',
inject: 'body'
})
, WebpackStrip = require('webpack-strip')
, JS_LOADERS = ['babel-loader']
, ExtractTextPlugin = require("extract-text-webpack-plugin")
, CopyWebpackPlugin = require('copy-webpack-plugin')
, UglifyJSPlugin = require('uglifyjs-webpack-plugin')
, PLUGINS = [
HtmlWebpackPluginConfig,
new webpack.optimize.ModuleConcatenationPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}),
new CopyWebpackPlugin([
{
from: './public'
}
], {context: '.'}),
new ExtractTextPlugin('style.css')
]
const isProd = process.env.NODE_ENV === 'production'
if (isProd) {
// JS_LOADERS.unshift(WebpackStrip.loader('console.log'));
} else {
// PLUGINS.push("react-hot-loader/babel");
}
// If environment is not Netlify
if (!process.env.NETLIFY) {
PLUGINS.concat([
// new BundleAnalyzerPlugin()
])
}
// Pass is prod into files
PLUGINS.push(
new webpack.DefinePlugin({
"IS_PROD": isProd
})
)
const theme = {
'primary-color': '#ff6f8f',
'secondary-color': '#363e83',
'link-color': '#ff6f8f',
}
module.exports = {
entry: './index.js',
output: {
path: path.resolve('dist'),
filename: 'app.bundle.js',
publicPath: '/'
},
module: {
rules: [
{
test:/\.js$/,
loaders: JS_LOADERS,
exclude: /node_modules/
},
{ test: /\.jsx$/, loader: 'babel-loader', exclude: /node_modules/ },
{ test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader?{minimize: true}', 'sass-loader']
})
},
{
test: /\.less$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
'css-loader?{minimize: true}',
`less-loader?{"javascriptEnabled": true, "sourceMap":true, "modifyVars":${JSON.stringify(theme)}}`
//, "modifyVars":${JSON.stringify(theme)}
]
}),
},
{ test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader']
})
},
{ test: /\.(png|jpg|svg|gif|woff|woff2|ttf|eot)$/, loader: 'url-loader?limit=25000' }
]
},
plugins: PLUGINS,
devServer: {
port: 8080,
proxy: isProd ? undefined : {
'/api/**': {
target: '',
changeOrigin: true
}
},
historyApiFallback: true
},
optimization: {
minimizer: [
new UglifyJSPlugin({
uglifyOptions: {
compress: {
warnings: false,
},
sourceMap: false,
comments: false
}
})
]
}
}