v1.0.0
·
185 commits
to master
since this release
1.0.0 (2021-01-11)
Features
BREAKING CHANGES
- Now supports both SASS and SCSS syntax without the need to set the
namefilter option.
If you enabled SCSS before, just remove the filter options to support both:
export default {
...
plugins: [
...
svelte({
preprocess: {
- style: sass({}, { name: 'scss' }),
+ style: sass(),
},
}),
],
};