]>
Commit | Line | Data |
---|---|---|
b9a2baf2 RBR |
1 | import { nodeResolve } from "@rollup/plugin-node-resolve"; |
2 | import CommonJS from "@rollup/plugin-commonjs"; | |
80172072 RBR |
3 | |
4 | export default { | |
b9a2baf2 RBR |
5 | input: "./content_script.js", |
6 | output: { | |
7 | file: "build/content_script.js", | |
80172072 | 8 | }, |
b9a2baf2 | 9 | plugins: [nodeResolve({ browser: true }), CommonJS()], |
80172072 | 10 | }; |