-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
132 lines (125 loc) · 3.51 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
122
123
124
125
126
127
128
129
130
131
132
const path = require('path')
const webpack = require('webpack')
const TerserPlugin = require('terser-webpack-plugin')
// const isDevServer = process.argv.find(v => v.includes('webpack-dev-server'))
// const jsPath = './public/static/js'
const jsDistPath = './public/static/dist'
const entries = {
'index-page': './src-js/index-page.js',
}
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
})
let config = {
target: 'web',
// Dev mode web server config
devServer: {
inline: true,
port: 8084,
host: '0.0.0.0',
publicPath: '/static/dist',
historyApiFallback: true,
contentBase: __dirname,
watchContentBase: true,
disableHostCheck: true,
watchOptions: {
ignored: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'var'),
path.resolve(__dirname, 'vendor'),
path.resolve(__dirname, '.git'),
path.resolve(__dirname, '.idea'),
],
},
},
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 prefixes
'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, jsDistPath),
filename: '[name].js',
},
plugins: [
configReplacementPlugin,
],
}
if (webpackMode === 'production') {
// Add JS uglifier and CSS optimization in prod mode
config.optimization.minimizer = [
new TerserPlugin(),
]
}
return config
}
// module.exports = {
// context: __dirname,
// entry: {
// bundle: './public/static/js/entry.js',
// offer: './public/static/js/page/offer.js',
// },
// output: {
// filename: '[name].js',
// path: path.resolve(__dirname, jsDistPath),
// },
// resolve: {
// alias: {
// handlebars: 'handlebars/dist/handlebars.min.js',
// },
// },
// module: {
// rules: [
// {
// test: /\.js?$/,
// include: [path.resolve(__dirname, jsPath)],
// loader: 'babel-loader',
// },
// ],
// },
// };