kopia lustrzana https://github.com/mifi/lossless-cut
13 wiersze
227 B
JavaScript
13 wiersze
227 B
JavaScript
|
import { defineConfig } from 'vite';
|
||
|
import react from '@vitejs/plugin-react';
|
||
|
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
base: '',
|
||
|
build: {
|
||
|
chunkSizeWarningLimit: 3e6,
|
||
|
},
|
||
|
});
|