simplify config

This commit is contained in:
Rich Harris 2018-04-19 10:59:33 -04:00
parent d6045c0a4c
commit cca53b3168

View file

@ -7,9 +7,9 @@ import uglify from 'rollup-plugin-uglify';
const production = !process.env.ROLLUP_WATCH; const production = !process.env.ROLLUP_WATCH;
export default { export default {
input: 'src/main.js', input: 'src/main.js',
output: { output: {
sourcemap: true, sourcemap: true,
format: 'iife', format: 'iife',
name: 'app', name: 'app',
file: 'public/bundle.js' file: 'public/bundle.js'
@ -22,13 +22,7 @@ export default {
// a separate file — better for performance // a separate file — better for performance
css: css => { css: css => {
css.write('public/bundle.css'); css.write('public/bundle.css');
}, }
// enable https://svelte.technology/guide#state-management
store: true,
// this results in smaller CSS files
cascade: false
}), }),
// If you have external dependencies installed from // If you have external dependencies installed from