-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
96 lines (91 loc) · 2.45 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
const Path = require('path');
const CssExtract = require('mini-css-extract-plugin');
const { DefinePlugin } = require('webpack');
const paths = {
app: Path.resolve(__dirname, 'src'),
assets: Path.resolve(__dirname, 'assets')
};
const mode = ['production', 'development'].includes(process.env.NODE_ENV)
? process.env.NODE_ENV
: 'development';
const entry = [
'@babel/polyfill',
Path.resolve(paths.app, 'index.js')
];
module.exports = {
entry,
mode,
optimization: {
concatenateModules: false
},
devServer: {
historyApiFallback: {
index: 'index.html'
},
hot: true,
open: true
},
resolve: {
alias: {
'~': paths.app,
'@': Path.resolve(paths.app, 'components'),
'+': Path.resolve(paths.app, 'shared'),
'#': Path.resolve(paths.app, 'utils')
},
},
output: {
path: paths.assets,
publicPath: '/assets/',
filename: 'app.js'
},
devtool: 'source-map',
plugins: [
new CssExtract({
filename: 'app.css'
}),
new DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
})
],
module: {
rules: [{
test: /\.riot$/,
exclude: /node_modules/,
use: [{
loader: '@riotjs/webpack-loader',
options: { hot: true }
}]
},
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
{
"targets": "> 0.25%, not dead"
}
]
]
}
}
},
{
test: /\.s?(c|a)ss$/,
use: [
{
loader: CssExtract.loader,
options: {
hmr: true
}
},
// "style-loader", // creates style nodes from JS strings
"css-loader", // translates CSS into CommonJS
"sass-loader" // compiles Sass to CSS, using Node Sass by default
]
}]
}
}