isl-vue3/vite.config.ts

19 lines
366 B
TypeScript
Raw Normal View History

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