mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-07 19:08:30 +03:00
13 lines
299 B
TypeScript
13 lines
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,
|
|
}
|
|
});
|