mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* add an example that shows how to polyfill XHR in an extension * updates from feedback * update based on third party OSS requirements * update readme links
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
|
import commonjs from '@rollup/plugin-commonjs';
|
|
|
|
export default {
|
|
input: 'background.js',
|
|
output: {
|
|
inlineDynamicImports: true,
|
|
file: 'dist/background.js',
|
|
},
|
|
plugins: [
|
|
commonjs(),
|
|
nodeResolve(),
|
|
]
|
|
};
|