Files
iAOP/deploy/fba/fba-ui-src/apps/web-antdv-next/vite.config.ts
T

17 lines
318 B
TypeScript

import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from '@vben/vite-config';
export default defineConfig(async () => {
return {
application: {},
vite: {
resolve: {
alias: {
'#': fileURLToPath(new URL('src', import.meta.url)),
},
},
},
};
});