diff options
Diffstat (limited to 'packages/integrations/svelte')
-rw-r--r-- | packages/integrations/svelte/README.md | 6 | ||||
-rw-r--r-- | packages/integrations/svelte/package.json | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/svelte/README.md b/packages/integrations/svelte/README.md index 7a9ca7bf4..b477613a2 100644 --- a/packages/integrations/svelte/README.md +++ b/packages/integrations/svelte/README.md @@ -29,7 +29,7 @@ If you run into any hiccups, [feel free to log an issue on our GitHub](https://g First, install the `@astrojs/svelte` integration like so: -``` +```sh npm install @astrojs/svelte ``` @@ -41,7 +41,7 @@ npm install svelte Now, apply this integration to your `astro.config.*` file using the `integrations` property: -__astro.config.mjs__ +__`astro.config.mjs`__ ```js import svelte from '@astrojs/svelte'; @@ -90,4 +90,4 @@ const defaultOptions = { The `emitCss`, `compilerOptions.dev`, and `compilerOptions.hydratable` cannot be overridden. -Providing your own `preprocess` options **will** override the defaults - make sure to enable the preprocessor flags needed for your project.
\ No newline at end of file +Providing your own `preprocess` options **will** override the defaults - make sure to enable the preprocessor flags needed for your project. diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 05e1426d2..64e99249a 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -18,7 +18,7 @@ "svelte" ], "bugs": "https://github.com/withastro/astro/issues", - "homepage": "https://astro.build", + "homepage": "https://docs.astro.build/en/guides/integrations-guide/svelte/", "exports": { ".": "./dist/index.js", "./editor": "./dist/editor.cjs", |