switching to vue frontend, basic barco control working - still needs styling

This commit is contained in:
0xEmm 2024-10-24 20:40:43 +02:00
parent b665085833
commit 5bb47c9578
29 changed files with 2300 additions and 27 deletions

View file

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