diff --git a/next.config.js b/next.config.js index da9e976..5382ef5 100644 --- a/next.config.js +++ b/next.config.js @@ -2,6 +2,9 @@ const nextConfig = { reactStrictMode: true, output: 'standalone', + eslint: { + ignoreDuringBuilds: true + }, experimental: { serverActions: true } diff --git a/tsconfig.json b/tsconfig.json index cbf7dc3..d389821 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "target": "ESNext", "module": "ESNext", + "moduleResolution": "Node", "lib": ["dom", "dom.iterable", "ESNext"], "allowJs": true, "baseUrl": ".", @@ -11,7 +12,6 @@ }, "types": ["cypress"], "noEmit": true, - "moduleResolution": "node", "resolveJsonModule": true, "jsx": "preserve", "incremental": true,