Added vuejs instead of svelte

This commit is contained in:
2023-12-14 19:06:42 +01:00
parent 927a3b4777
commit eb541b7903
36 changed files with 4381 additions and 134 deletions

View File

@@ -1,6 +1,18 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [sveltekit()]
});
plugins: [
vue(),
vueJsx(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})