contract-query/frontend/vite.config.js
2025-08-14 15:03:33 -05:00

16 lines
No EOL
297 B
JavaScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: '/contract-query/',
server: {
port: 3000,
host: true,
open: '/',
},
define: {
global: 'globalThis',
},
})