diff options
author | 2022-12-13 05:55:09 +0800 | |
---|---|---|
committer | 2022-12-12 22:55:09 +0100 | |
commit | dae6866ddcd957ffc282b29198150c2d5053a0ca (patch) | |
tree | a47d1a2985ba3551d018a3305a6185f8e0bc26f4 /packages/integrations/vue | |
parent | 1e6badbfeab567028906e112d18a5eaacd15afee (diff) | |
download | astro-dae6866ddcd957ffc282b29198150c2d5053a0ca.tar.gz astro-dae6866ddcd957ffc282b29198150c2d5053a0ca.tar.zst astro-dae6866ddcd957ffc282b29198150c2d5053a0ca.zip |
fix link 404 in Vue integration README (#5585)
Diffstat (limited to 'packages/integrations/vue')
-rw-r--r-- | packages/integrations/vue/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vue/README.md b/packages/integrations/vue/README.md index c1c199b81..cc1613efb 100644 --- a/packages/integrations/vue/README.md +++ b/packages/integrations/vue/README.md @@ -74,7 +74,7 @@ This package is maintained by Astro's Core team. You're welcome to submit an iss ## Options -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. +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://www.npmjs.com/package/@vitejs/plugin-vue) for more details. __`astro.config.mjs`__ @@ -142,7 +142,7 @@ export default defineConfig({ }); ``` -This will enable rendering for both Vue and Vue JSX components. To customize the Vue JSX compiler, pass an options object instead of a boolean. See the `@vitejs/plugin-vue-jsx` [docs](https://github.com/vitejs/vite/tree/main/packages/plugin-vue-jsx) for more details. +This will enable rendering for both Vue and Vue JSX components. To customize the Vue JSX compiler, pass an options object instead of a boolean. See the `@vitejs/plugin-vue-jsx` [docs](https://www.npmjs.com/package/@vitejs/plugin-vue-jsx) for more details. __`astro.config.mjs`__ |