Vue support added

This commit is contained in:
2025-11-15 15:30:12 +02:00
parent ab5df16cb6
commit 96f2429165
4 changed files with 1592 additions and 7 deletions

View File

@@ -1,5 +1,9 @@
// @ts-check // @ts-check
import { defineConfig } from 'astro/config'; import { defineConfig } from 'astro/config';
import vue from '@astrojs/vue';
// https://astro.build/config // https://astro.build/config
export default defineConfig({}); export default defineConfig({
integrations: [vue()]
});

1573
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,6 +9,8 @@
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
"astro": "^5.15.7" "@astrojs/vue": "^5.1.3",
"astro": "^5.15.7",
"vue": "^3.5.24"
} }
} }

View File

@@ -1,5 +1,13 @@
{ {
"extends": "astro/tsconfigs/strict", "extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"], "include": [
"exclude": ["dist"] ".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "preserve"
}
} }