mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 16:38:41 +00:00
28 lines
539 B
JavaScript
28 lines
539 B
JavaScript
module.exports = {
|
|
publicPath: "/",
|
|
outputDir: "dist",
|
|
pages: {
|
|
popup: "src/popup/index.ts",
|
|
options: "src/options/index.ts",
|
|
devtools: "src/devtools/index.ts",
|
|
},
|
|
pluginOptions: {
|
|
browserExtension: {
|
|
components: {
|
|
background: true,
|
|
contentScripts: true,
|
|
},
|
|
componentOptions: {
|
|
contentScripts: {
|
|
entries: {
|
|
content: "src/content.ts"
|
|
},
|
|
},
|
|
background: {
|
|
entry: "src/background.ts",
|
|
}
|
|
}
|
|
}
|
|
},
|
|
};
|