summaryrefslogtreecommitdiff
path: root/packages/integrations/vue
diff options
context:
space:
mode:
authorGravatar Chris Swithinbank <swithinbank@gmail.com> 2022-07-11 21:10:34 +0200
committerGravatar GitHub <noreply@github.com> 2022-07-11 21:10:34 +0200
commitbf5d1cc1e71da38a14658c615e9481f2145cc6e7 (patch)
treebb7c27b98e84c274e98e6e0116c7dd90189b0a76 /packages/integrations/vue
parent1554a37622babf5486d1201425d39142bc854a62 (diff)
downloadastro-bf5d1cc1e71da38a14658c615e9481f2145cc6e7.tar.gz
astro-bf5d1cc1e71da38a14658c615e9481f2145cc6e7.tar.zst
astro-bf5d1cc1e71da38a14658c615e9481f2145cc6e7.zip
More integration README fixes (#3885)
* Integration README fixes * More tweaks (mostly code backticks for filenames) * Update changeset * Few more tweaks * Make sure code blocks all have a code language * Use URLs of new docs pages for package homepage * One more stray `<br>` :boot: * Standardise to `sh` instead of `shell`
Diffstat (limited to 'packages/integrations/vue')
-rw-r--r--packages/integrations/vue/README.md8
-rw-r--r--packages/integrations/vue/package.json2
2 files changed, 5 insertions, 5 deletions
diff --git a/packages/integrations/vue/README.md b/packages/integrations/vue/README.md
index bbbbb555e..f727e3157 100644
--- a/packages/integrations/vue/README.md
+++ b/packages/integrations/vue/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/vue` integration like so:
-```
+```sh
npm install @astrojs/vue
```
@@ -41,7 +41,7 @@ npm install vue
Now, apply this integration to your `astro.config.*` file using the `integrations` property:
-__astro.config.mjs__
+__`astro.config.mjs`__
```js
import vue from '@astrojs/vue';
@@ -68,7 +68,7 @@ Also check our [Astro Integration Documentation][astro-integration] for more on
This integration is powered by `@vitejs/plugin-vue`. To customize the Vue compiler, options can be provided to the integration. See the `@vitejs/plugin-vue` [docs](https://github.com/vitejs/vite/tree/main/packages/plugin-vue) for more details.
-__astro.config.mjs__
+__`astro.config.mjs`__
```js
import vue from '@astrojs/vue';
@@ -85,4 +85,4 @@ export default {
// ...
})],
}
-``` \ No newline at end of file
+```
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index 1f4fbca28..031220203 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -18,7 +18,7 @@
"vue"
],
"bugs": "https://github.com/withastro/astro/issues",
- "homepage": "https://astro.build",
+ "homepage": "https://docs.astro.build/en/guides/integrations-guide/vue/",
"exports": {
".": "./dist/index.js",
"./editor": "./dist/editor.cjs",