-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
92 lines (87 loc) · 2.43 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
const path = require('path')
const webpack = require('webpack')
const TerserPlugin = require('terser-webpack-plugin')
module.exports = (env, argv) => {
const webpackMode = argv.mode || 'development'
const appTarget = env.APP_TARGET || 'dev'
console.log(`Webpack mode: ${webpackMode}`)
console.log(`Application target: ${appTarget}`)
// Replace env-related modules depending on the APP_TARGET env variable.
// Should be used only for conditional config files inclusion.
const configReplacementPlugin = new webpack.NormalModuleReplacementPlugin(/(.*)-APP_TARGET(\.*)/, function(resource) {
const r = resource.request.replace(/-APP_TARGET/, `-${appTarget}`)
console.log(`Replace module '${resource.request}' with '${r}'`)
resource.request = r
})
const entries = {
'app': './js/entry.js',
}
let config = {
// Dev mode web server config
devServer: {
inline: true,
port: 8082,
host: '0.0.0.0',
publicPath: '/build',
historyApiFallback: true,
contentBase: path.resolve(__dirname, 'wwwroot'),
watchContentBase: true,
disableHostCheck: true,
},
entry: entries,
module: {
rules: [
{
test: /\.js$/,
loaders: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.scss$/,
use: [
'style-loader', // Load styles from JS
'css-loader', // Ability to import CSS in JS module
'postcss-loader', // Add CSS refixes
'sass-loader?sourceMap', // Compile SCSS to CSS
],
},
{
test: /\.css$/,
use: [
// 'style-loader',
// MiniCssExtractPlugin.loader,
'css-loader',
'postcss-loader',
],
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'url-loader',
],
},
{
test: /\.(woff|woff2|eot|ttf|svg)$/,
loader: 'file-loader?name=fonts/[name].[ext]'
},
],
},
optimization: {
},
// Where to put compiled JS
output: {
path: path.resolve(__dirname, 'wwwroot/build'),
filename: '[name].js',
},
plugins: [
configReplacementPlugin,
],
}
if (webpackMode === 'production') {
// Add JS uglifier and CSS optimization in prod mode
config.optimization.minimizer = [
new TerserPlugin(),
]
}
return config
}