Mercury/ui/vite.config.js
Matthew L McPeak c35586c8f4
All checks were successful
ci / build-ui (push) Successful in 12s
ci / test (push) Successful in 3m3s
ci / publish (push) Successful in 2m29s
Initial Commit
2026-06-17 21:02:39 -04:00

16 lines
No EOL
401 B
JavaScript

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
'/api': 'http://localhost:3000',
'/auth': 'http://localhost:3000',
'/admin': 'http://localhost:3000',
},
},
build: {
outDir: 'dist',
},
});
//# sourceMappingURL=vite.config.js.map