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 { export default {
input: 'src/replace-words.js', input: 'src/replace-words.js',
output: [ output: {
{
file: 'src/content-script.js', file: 'src/content-script.js',
format: 'iife', format: 'iife',
name: 'contentScript' name: 'contentScript'
} },
],
plugins: [resolve(), commonjs()] plugins: [resolve(), commonjs()]
}; };