Removing redundant scope in rollup config

This commit is contained in:
Jean Viscogliosi-Pate 2025-01-24 16:59:10 -08:00
parent 5b5b65d814
commit dd04a20dfd
1 changed files with 5 additions and 7 deletions

View File

@ -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()]
};