diff --git a/.env.production b/.env.production index b9dcc8e..1cb5971 100644 --- a/.env.production +++ b/.env.production @@ -1,4 +1,4 @@ API_HOST=tsms-uat.2fi-solutions.com -API_PORT=8090 +API_PORT=80 API_PROTOCOL=https NEXTAUTH_SECRET=secret \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json index 93c39f7..225eaf2 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -4,6 +4,7 @@ "rules": { "prettier/prettier": "warn", "no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": ["off"], "@typescript-eslint/no-unused-vars": "warn" } } diff --git a/next.config.js b/next.config.js index 767719f..82f670f 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,10 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + // eslint: { + // // Warning: This allows production builds to successfully complete even if + // // your project has ESLint errors. + // ignoreDuringBuilds: true, + // }, +} module.exports = nextConfig