a342a486c2
* Let user setup vitePreprocess * Abstract function * Add changeset * Update svelte syntax * Make fallback * Fix docs * Update changeset * Fix types
18 lines
532 B
Markdown
18 lines
532 B
Markdown
---
|
|
'@astrojs/svelte': major
|
|
'astro': minor
|
|
---
|
|
|
|
The fallback Svelte preprocessor will only be applied if a custom `preprocess` option is not passed to the `svelte()` integration option, or in the `svelte.config.js` file.
|
|
|
|
To support IDE autocompletion, or if you're migrating from `@astrojs/svelte` v1, you can create a `svelte.config.js` file with:
|
|
|
|
```js
|
|
import { vitePreprocess } from '@astrojs/svelte';
|
|
|
|
export default {
|
|
preprocess: vitePreprocess(),
|
|
};
|
|
```
|
|
|
|
This file will also be generated by `astro add svelte` by default.
|