mirror of
https://github.com/Qortal/Q-Nodecontrol.git
synced 2026-06-10 01:49:22 +00:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: "",
|
|
build: {
|
|
chunkSizeWarningLimit: 5000,
|
|
},
|
|
}); |