start.hackmi.ch/vite.config.js

16 lines
279 B
JavaScript
Raw Normal View History

2024-10-21 14:24:17 +00:00
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})