databag/app/client/web/vite.config.mts
balzack 869b3be540
Some checks are pending
CI / CI (push) Waiting to run
copy over sdk, will attempt incremental merge in branch
2025-03-03 22:04:16 -08:00

23 lines
425 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tsConfigPaths from 'vite-tsconfig-paths'
import svgrPlugin from 'vite-plugin-svgr'
// https://vitejs.dev/config/
export default defineConfig(() => ({
plugins: [
react(),
tsConfigPaths(),
svgrPlugin(),
],
server: {
port: 3000,
},
preview: {
port: 8080,
},
build: {
chunkSizeWarningLimit: 1600
}
}))