Move frontend files

This commit is contained in:
Miha Frangež 2025-09-12 23:23:30 +02:00
parent b7ce9d850d
commit 36da67f369
36 changed files with 2 additions and 5 deletions

View file

@ -1,22 +0,0 @@
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(),
],
//base: './',
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
hmr: {
host: 'localhost'
}
}
})