This repository was archived by the owner on Nov 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwebpack.config.js
71 lines (70 loc) · 1.63 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
const path = require('path')
const {InjectManifest} = require('workbox-webpack-plugin');
module.exports = (_, argv) => {
return {
entry: {
main: "./src/index.js",
"indexeddb-worker": "./src/indexeddb-worker.js"
},
plugins: argv.mode === 'production'
? [
new InjectManifest({
swSrc: "./src/service-worker.js",
maximumFileSizeToCacheInBytes: 10485760 // ten megabytes
})
]
: [],
stats: {
errorDetails: true
},
devServer: {
client: {
overlay: {
errors: true,
warnings: false
}
},
compress: true,
port: 9000,
host: '0.0.0.0'
// ^^^ serve on LAN. Useful for testing mobile features
},
resolve: {
fallback: {
buffer: require.resolve("buffer/"),
url: require.resolve("url/")
}
},
module: {
rules: [
{
test: /\.css$/i,
use: ["style-loader", "css-loader"]
},
{
include: path.resolve(__dirname, "assets"),
type: 'asset/resource',
generator: {
filename: '[name][ext]'
}
},
{
test: /.m?js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
plugins: [
["@babel/plugin-transform-react-jsx", {
pragma: "h",
pragmaFrag: "Fragment"
}],
"@babel/plugin-proposal-class-properties"
]
}
}
}
]
}
}
}