start new bb run club project on vue3

This commit is contained in:
2025-09-30 06:25:55 +05:00
parent db66e5279b
commit e3f07504f2
32 changed files with 5675 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
server: {
port: 3001,
host: true
}
})