Optimization FIxed/ Fixed Olama to run on startup
Build & Auto-Repair / build (push) Has been cancelled

This commit is contained in:
JCBSComputer
2026-07-03 10:12:09 +02:00
parent 9df7475f35
commit dd56014318
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -2,7 +2,7 @@ import type { NextConfig } from "next"
const nextConfig: NextConfig = {
eslint: {
ignoreDuringBuilds: false,
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
@@ -12,6 +12,9 @@ const nextConfig: NextConfig = {
},
],
},
experimental: {
optimizePackageImports: ["lucide-react", "framer-motion", "date-fns", "@radix-ui/react-icons", "recharts"],
},
}
export default nextConfig
+1 -1
View File
@@ -51,7 +51,7 @@ if (!isRunning()) {
}
// Give it a moment to start listening
if (platform() === "win32") {
execSync("timeout /t 3 /nobreak >nul", { stdio: "ignore", timeout: 10000, shell: true })
execSync("powershell -Command \"Start-Sleep -Seconds 3\"", { stdio: "ignore", timeout: 10000 })
} else {
execSync("sleep 3", { stdio: "ignore", timeout: 5000 })
}