-
Notifications
You must be signed in to change notification settings - Fork 0
/
craco.config.js
27 lines (26 loc) · 922 Bytes
/
craco.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
// https://medium.com/litslink/how-to-create-google-chrome-extension-using-react-js-5c9e343323ff
module.exports = {
webpack: {
configure: (webpackConfig, { env, paths }) => {
return {
...webpackConfig,
entry: {
main: [
env === "development" && require.resolve("react-dev-utils/webpackHotDevClient"),
paths.appIndexJs
].filter(Boolean),
background: "./src/background.ts",
content: "./src/content.ts",
},
output: {
...webpackConfig.output,
filename: "static/js/[name].js",
},
optimization: {
...webpackConfig.optimization,
runtimeChunk: false,
}
}
},
}
}