From 8811853c1780ee9d1948172142bb92b99660167a Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Fri, 12 Jan 2018 07:55:33 -0500 Subject: [PATCH] Support store by default --- rollup.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 5a323cb..1bc11e5 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -23,6 +23,9 @@ export default { css: css => { css.write('public/bundle.css'); }, + + // enable https://svelte.technology/guide#state-management + store: true, // this results in smaller CSS files cascade: false @@ -41,4 +44,4 @@ export default { production && buble({ exclude: 'node_modules/**' }), production && uglify() ] -}; \ No newline at end of file +};