mirror of
https://github.com/by-sonic/tglock.git
synced 2026-07-31 07:45:13 +03:00
15 lines
225 B
TypeScript
15 lines
225 B
TypeScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
clearScreen: false,
|
|
build: {
|
|
outDir: "dist-ui",
|
|
},
|
|
server: {
|
|
strictPort: true,
|
|
watch: {
|
|
ignored: ["**/target/**"],
|
|
},
|
|
},
|
|
});
|