Clyde/frontend/vite.config.js
Debucquoy Anthony a795108859
All checks were successful
deploy to production / deploy-frontend (push) Successful in 47s
frontend + ci
2024-02-17 20:58:42 +01:00

17 lines
309 B
JavaScript

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