-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
40 lines (36 loc) · 844 Bytes
/
webpack.config.js
File metadata and controls
40 lines (36 loc) · 844 Bytes
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
const path = require('path');
const rootConfig = {
mode: 'development',
optimization: {
usedExports: true, // tells webpack to tree-shake
},
devtool: 'eval-source-map'
};
const appConfig = {
...rootConfig,
entry: './src/index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'public/scripts'),
},
};
const serviceWorkerConfig = {
...rootConfig,
entry: './src/firebase-messaging-sw.js',
// TODO(jhuleatt): Remove this once https://github.com/firebase/firebase-js-sdk/issues/5314 is resolved
module: {
rules: [
{
test: /\.m?js/,
resolve: {
fullySpecified: false,
},
},
],
},
output: {
filename: 'firebase-messaging-sw.js',
path: path.resolve(__dirname, 'public'),
},
};
module.exports = [appConfig, serviceWorkerConfig];