Created
August 2, 2020 17:28
-
-
Save skflowne/71bf9d8a887cbc6f9fc4f5f528ceccec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins: [ | |
svelte({ | |
// enable run-time checks when not in production | |
dev: !production, | |
// we'll extract any component CSS out into | |
// a separate file - better for performance | |
css: (css) => { | |
css.write("public/build/bundle.css") | |
}, | |
preprocess: sveltePreprocess({ | |
postcss: true, | |
}), | |
}), | |
// ...otherPlugins | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment