Skip to content

Commit 2258d92

Browse files
authored
corrected bracket error
1 parent c24736c commit 2258d92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

config/build/esbuild.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const defineEnv = {
3535
};
3636

3737
const esbuildOpts = {
38-
entryPoints: ['src/scripts/jsx/*.jsx', 'src/scripts/js/*.js', 'dist/app/*.css']), // include css so that its in the manifest.json
38+
entryPoints: ['src/scripts/jsx/*.jsx', 'src/scripts/js/*.js', 'dist/app/*.css'], // include css so that its in the manifest.json
3939
entryNames: isProd ? '[name]-[hash]' : '[name]',
4040
outExtension: isProd ? {'.js': '.min.js', '.css': '.min.css'} : {'.js': '.js', '.css': '.css'},
4141
allowOverwrite: !isProd, // overwrite dist/app/style.css when in dev mode
@@ -102,4 +102,4 @@ module.exports = async () => {
102102
fs.writeFileSync('./src/_data/buildmeta.json', JSON.stringify(result.metafile));
103103
})
104104
}
105-
}
105+
}

0 commit comments

Comments
 (0)