From 3bc69e11d3656adca3c0531f19d3702c59668908 Mon Sep 17 00:00:00 2001 From: neoapps-dev Date: Tue, 15 Sep 2026 13:17:26 +0300 Subject: [PATCH] chore(vite.config): add `ignore` to ignored watchlist --- vite.config.ts | 37 +++++++++++++++++-------------------- 1 file changed, 17 insertions(+), 20 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 3a2912a..eef7f6f 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,20 +1,17 @@ -import { defineConfig } from 'vite' -import tailwindcss from '@tailwindcss/vite' -import react from '@vitejs/plugin-react' - -export default defineConfig({ - plugins: [ - react(), - tailwindcss(), - ], - define: { - __BUILD_DATE__: JSON.stringify(new Date().toISOString()), - }, - server: { - port: 1420, - strictPort: true, - watch: { - ignored: ["**/src-tauri/**"], - }, - }, -}) \ No newline at end of file +import { defineConfig } from "vite"; +import tailwindcss from "@tailwindcss/vite"; +import react from "@vitejs/plugin-react"; + +export default defineConfig({ + plugins: [react(), tailwindcss()], + define: { + __BUILD_DATE__: JSON.stringify(new Date().toISOString()), + }, + server: { + port: 1420, + strictPort: true, + watch: { + ignored: ["**/src-tauri/**", "**/ignore"], //neo: i use ./ignore myself for instances and other git repos i need + }, + }, +});