domino-client/vite.config.ts

15 lines
300 B
TypeScript
Raw Normal View History

2024-06-29 16:40:11 +02:00
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
2024-07-05 01:31:55 +02:00
plugins: [vue()],
2024-06-29 16:40:11 +02:00
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})