* initialisation of all libraries

feature: #1
This commit is contained in:
2022-12-30 00:45:54 +01:00
parent b25ca09f32
commit af3b12344f
22 changed files with 7736 additions and 153 deletions

View File

@@ -2,10 +2,11 @@ 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: [vue()],
plugins: [vue(), vueJsx()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))