Main page created without function .

This commit is contained in:
Daniel-HomePC
2024-10-31 16:19:48 +01:00
parent a1318e7397
commit be36049883
24 changed files with 3113 additions and 33 deletions

15
src/vite-env.d.ts vendored
View File

@@ -1,7 +1,22 @@
/// <reference types="vite/client" />
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})