diff --git a/apps/infoalloggi/emails/base.tsx b/apps/infoalloggi/emails/base.tsx
index 53f7181..c0a77a5 100644
--- a/apps/infoalloggi/emails/base.tsx
+++ b/apps/infoalloggi/emails/base.tsx
@@ -43,12 +43,11 @@ const Base = ({
diff --git a/apps/infoalloggi/next.config.ts b/apps/infoalloggi/next.config.ts
index a881f31..f5d65a5 100644
--- a/apps/infoalloggi/next.config.ts
+++ b/apps/infoalloggi/next.config.ts
@@ -91,7 +91,6 @@ async function createNextConfig(): Promise {
},
];
},
-
typescript: {
ignoreBuildErrors: true,
},
diff --git a/apps/infoalloggi/package.json b/apps/infoalloggi/package.json
index 2162997..a85dcd0 100644
--- a/apps/infoalloggi/package.json
+++ b/apps/infoalloggi/package.json
@@ -6,7 +6,7 @@
"d": "npm run-p dev stripe-dev -cl",
"dev": "next dev --turbopack",
"dev-https": "cross-env NEXT_PUBLIC_BASE_URL='https://localhost:3000' INTERNAL_BASE_URL='https://localhost:3000' BASE_URL='https://localhost:3000' next dev --experimental-https --turbopack",
- "email": "cross-env NEXT_PUBLIC_BASE_URL='https://localhost:3000' email dev --port 3500",
+ "email": "cross-env NEXT_PUBLIC_BASE_URL='https://localhost:3000' BASE_URL='https://localhost:3000' SKIP_ENV_VALIDATION='1' email dev --port 3500",
"idev": "cross-env NODE_OPTIONS='--inspect' next dev --turbopack",
"knip": "knip --no-exit-code --no-config-hints",
"lint": "biome lint",
diff --git a/apps/infoalloggi/src/proxy.ts b/apps/infoalloggi/src/proxy.ts
index 63d483a..92ebf40 100644
--- a/apps/infoalloggi/src/proxy.ts
+++ b/apps/infoalloggi/src/proxy.ts
@@ -5,7 +5,7 @@ import { pswChangeProxy } from "./proxies/psw_change";
import { TestRedirectProxy } from "./proxies/test_redirect";
export async function proxy(request: NextRequest) {
- console.log("Proxy triggered for:", request.nextUrl.pathname);
+ //console.log("Proxy triggered for:", request.nextUrl.pathname);
return await chainProxies(request, [
TestRedirectProxy,