mirror of
https://github.com/Qortal/Q-Nodecontrol.git
synced 2026-06-13 11:19:23 +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,
|
|
},
|
|
}); |