fork of hey-api/openapi-ts because I need some additional things
at main 14 lines 328 B view raw
1import { fileURLToPath, URL } from 'node:url'; 2 3import { createViteConfig } from '@config/vite-base'; 4import vue from '@vitejs/plugin-vue'; 5 6// https://vitejs.dev/config/ 7export default createViteConfig({ 8 plugins: [vue()], 9 resolve: { 10 alias: { 11 '@': fileURLToPath(new URL('./src', import.meta.url)), 12 }, 13 }, 14});