Removing redundant scope in rollup config
This commit is contained in:
parent
5b5b65d814
commit
dd04a20dfd
|
@ -3,12 +3,10 @@ import commonjs from '@rollup/plugin-commonjs';
|
|||
|
||||
export default {
|
||||
input: 'src/replace-words.js',
|
||||
output: [
|
||||
{
|
||||
file: 'src/content-script.js',
|
||||
format: 'iife',
|
||||
name: 'contentScript'
|
||||
}
|
||||
],
|
||||
output: {
|
||||
file: 'src/content-script.js',
|
||||
format: 'iife',
|
||||
name: 'contentScript'
|
||||
},
|
||||
plugins: [resolve(), commonjs()]
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue