We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6045c0 commit cca53b3Copy full SHA for cca53b3
rollup.config.js
@@ -7,9 +7,9 @@ import uglify from 'rollup-plugin-uglify';
7
const production = !process.env.ROLLUP_WATCH;
8
9
export default {
10
- input: 'src/main.js',
+ input: 'src/main.js',
11
output: {
12
- sourcemap: true,
+ sourcemap: true,
13
format: 'iife',
14
name: 'app',
15
file: 'public/bundle.js'
@@ -22,13 +22,7 @@ export default {
22
// a separate file — better for performance
23
css: css => {
24
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
+ }
32
}),
33
34
// If you have external dependencies installed from
0 commit comments