Files
waterfall/webui/vite.config.js
T
Kinesin Data Technologies Incorporated e711b3249b Adding vue copy/paste from daggy
2022-10-07 12:25:41 -03:00

15 lines
300 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))
}
}
})