kopia lustrzana https://github.com/bellingcat/auto-archiver
13 wiersze
299 B
TypeScript
13 wiersze
299 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import { viteSingleFile } from "vite-plugin-singlefile"
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), viteSingleFile()],
|
|
build: {
|
|
// minify: false,
|
|
// sourcemap: true,
|
|
}
|
|
});
|