Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Dec 1, 2021
1 parent 4816f5c commit 1a4212f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,9 @@ import svelteMd from "vite-plugin-svelte-md";
export default defineConfig({
plugins: [
svelte({
/* plugin options */
extensions: [".svelte", ".md"], // <--
}),
svelteMd(),
svelteMd(), // <--
],
});
```
Expand All @@ -110,10 +109,12 @@ import svelteMd from "vite-plugin-svelte-md";

/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: [".svelte", ".md"],
extensions: [".svelte", ".md"], // <--
kit: {
vite: {
plugins: [svelteMd()],
plugins: [
svelteMd(), // <--
],
},
},
};
Expand Down

0 comments on commit 1a4212f

Please sign in to comment.