Mercury/ui/vite.config.js
Matthew L McPeak 034cd4df8c
Some checks failed
ci / build-ui (push) Failing after 12s
ci / test (push) Failing after 51s
ci / publish (push) Has been skipped
Mercury
2026-06-17 15:11:51 -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