1
0
forked from noxious/client

started working on fixing typescript errors

This commit is contained in:
2024-05-07 21:20:57 +02:00
parent f6ea46a3b5
commit f038b6787f
11 changed files with 40 additions and 17 deletions

16
vite.config.js Normal file
View File

@ -0,0 +1,16 @@
import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import VueDevTools from 'vite-plugin-vue-devtools';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
VueDevTools(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
});