-
Notifications
You must be signed in to change notification settings - Fork 71
/
webpack-content-scripts.config.js
61 lines (59 loc) · 1.81 KB
/
webpack-content-scripts.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
const webpack = require('webpack');
const path = require('path');
const config = {
entry: {
'app': path.resolve(__dirname, './src/all/contentScripts/js/app/App.js'),
'setup': path.resolve(__dirname, './src/all/contentScripts/js/app/Setup.js'),
'recover': path.resolve(__dirname, './src/all/contentScripts/js/app/Recover.js'),
'login': path.resolve(__dirname, './src/all/contentScripts/js/app/Login.js'),
'account-recovery': path.resolve(__dirname, './src/all/contentScripts/js/app/AccountRecovery.js'),
},
plugins: [
new webpack.ProvidePlugin({
// Inject browser polyfill as a global API, and adapt it depending on the environment (MV2/MV3/Windows app).
browser: path.resolve(__dirname, './src/all/common/polyfill/browserPolyfill.js'),
})
],
mode: 'production',
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /(node_modules[\\/]((?!(passbolt\-styleguide))))/,
loader: "babel-loader",
options: {
presets: ["@babel/react"],
}
}
]
},
optimization: {
splitChunks: {
minSize: 0,
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]((?!(passbolt\-styleguide)).*)[\\/]/,
name: 'vendors',
chunks: 'all'
},
}
},
},
resolve: {extensions: ["*", ".js", ".jsx"]},
output: {
// Set a unique name to ensure the cohabitation of multiple webpack loader on the same page.
chunkLoadingGlobal: 'contentScriptChunkLoadingGlobal',
path: path.resolve(__dirname, './build/all/contentScripts/js/dist'),
pathinfo: true,
filename: '[name].js'
}
};
exports.default = function (env) {
env = env || {};
// Enable debug mode.
if (env.debug) {
config.mode = "development";
config.devtool = "inline-source-map";
}
return config;
};