-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
78 lines (76 loc) · 1.72 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
const HtmlPlugin = require('html-webpack-plugin')
const {WEBPACK_DEV_SERVER} = process.env
const isDev = Boolean(WEBPACK_DEV_SERVER)
module.exports = {
entry: `${__dirname}/src`,
output: {
path: `${__dirname}/build`,
publicPath: '/',
},
plugins: [
new HtmlPlugin({
favicon: `${__dirname}/assets/favicon.ico`,
template: 'src/index.html'
}),
new HtmlPlugin({
template: `${__dirname}/src/_redirects`,
filename: '_redirects',
inject: false,
}),
new HtmlPlugin({
template: `${__dirname}/src/rss.tsx`,
filename: 'rss.xml',
inject: false,
}),
],
devtool: isDev ? undefined : 'source-map',
mode: isDev ? 'development' : 'production',
resolve: {
extensions: ['.js', '.ts', '.tsx'],
},
module: {
rules: [
{
test: /\.(js|tsx)$/,
exclude: /node_modules/,
use: 'babel-loader?cacheDirectory',
},
{
test: /\.css$/,
exclude: /node_modules/,
use: [
'style-loader',
'css-modules-typescript-loader',
{
loader: 'css-loader',
options: {
modules: {
localIdentName: isDev ? '[local]-[hash:base64:6]' : '[hash:base64:6]',
},
importLoaders: 1,
},
},
'postcss-loader',
],
},
{
test: /\.css$/,
include: /node_modules/,
use: [
'style-loader',
'css-loader'
],
},
{
test: /\.(jpg|eot|otf|svg|ttf|woff|woff2|gif)$/,
use: 'file-loader',
},
],
},
devServer: {
clientLogLevel: 'warn',
historyApiFallback: true,
open: true,
https: true,
},
}