Skip to content

Commit cca53b3

Browse files
committed
simplify config
1 parent d6045c0 commit cca53b3

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

rollup.config.js

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import uglify from 'rollup-plugin-uglify';
77
const production = !process.env.ROLLUP_WATCH;
88

99
export default {
10-
input: 'src/main.js',
10+
input: 'src/main.js',
1111
output: {
12-
sourcemap: true,
12+
sourcemap: true,
1313
format: 'iife',
1414
name: 'app',
1515
file: 'public/bundle.js'
@@ -22,13 +22,7 @@ export default {
2222
// a separate file — better for performance
2323
css: css => {
2424
css.write('public/bundle.css');
25-
},
26-
27-
// enable https://svelte.technology/guide#state-management
28-
store: true,
29-
30-
// this results in smaller CSS files
31-
cascade: false
25+
}
3226
}),
3327

3428
// If you have external dependencies installed from

0 commit comments

Comments
 (0)