8000
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 085ba5d commit ac4c954Copy full SHA for ac4c954
docs/getting-started.md
@@ -102,15 +102,15 @@ export default {
102
file: 'public/bundle.js',
103
},
104
plugins: [
105
++ // teach rollup how to handle typescript imports
106
++ typescript({ sourceMap: !production }),
107
svelte({
108
+ preprocess: autoPreprocess({
109
+ sourceMap: !production,
110
+ postcss: {
111
+ plugins: [require('autoprefixer')()]
112
+ }
113
+ }),
-+ // teach rollup how to handle typescript imports
-+ typescript({ sourceMap: !production }),
114
// enable run-time checks when not in production
115
dev: !production,
116
// we'll extract any component CSS out into
0 commit comments