summaryrefslogtreecommitdiff
path: root/.changeset/chatty-planes-bathe.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/chatty-planes-bathe.md')
-rw-r--r--.changeset/chatty-planes-bathe.md18
1 files changed, 0 insertions, 18 deletions
diff --git a/.changeset/chatty-planes-bathe.md b/.changeset/chatty-planes-bathe.md
deleted file mode 100644
index 726c6782f..000000000
--- a/.changeset/chatty-planes-bathe.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-'@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.