pls bbg
Some checks failed
Deploy Frontend / deploy (push) Failing after 1m58s

This commit is contained in:
Lee 2024-10-04 11:59:32 +01:00
parent 2b29836c82
commit 21e120de07
2 changed files with 5 additions and 5 deletions

@ -2,11 +2,11 @@ import * as Sentry from "@sentry/nextjs";
export async function register() { export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") { if (process.env.NEXT_RUNTIME === "nodejs") {
await import("../sentry.server.config"); await import("../sentry.server.config.js");
} }
if (process.env.NEXT_RUNTIME === "edge") { if (process.env.NEXT_RUNTIME === "edge") {
await import("../sentry.edge.config"); await import("../sentry.edge.config.js");
} }
} }

@ -10,8 +10,8 @@
"noEmit": true, "noEmit": true,
"incremental": true, "incremental": true,
"esModuleInterop": true, "esModuleInterop": true,
"module": "ESNext", "module": "NodeNext",
"moduleResolution": "Bundler", "moduleResolution": "NodeNext",
"resolveJsonModule": true, "resolveJsonModule": true,
"isolatedModules": true, "isolatedModules": true,
"jsx": "preserve", "jsx": "preserve",
@ -24,7 +24,7 @@
"preserveWatchOutput": true, "preserveWatchOutput": true,
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": ["./src/*.ts", "./src/*"]
} }
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "tailwind.config.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "tailwind.config.ts"],