aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/vue/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/vue/README.md')
-rw-r--r--packages/integrations/vue/README.md8
1 files changed, 4 insertions, 4 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
+```