mirror of
https://github.com/GEEKiDoS/polaris-touch.git
synced 2026-09-22 22:47:58 +03:00
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { defineConfig } from "vite"
|
|
import { viteSingleFile } from "vite-plugin-singlefile"
|
|
|
|
export default defineConfig({
|
|
plugins: [viteSingleFile()],
|
|
build: {
|
|
minify: false,
|
|
cssMinify: false,
|
|
}
|
|
});
|