From 2c03ee104d06e1be712356efa06a8b3cbe2d09dc Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Tue, 19 Mar 2024 19:24:29 +0000 Subject: refactor: Move landing page to its own app to deploy it separately --- apps/landing/next.config.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 apps/landing/next.config.mjs (limited to 'apps/landing/next.config.mjs') diff --git a/apps/landing/next.config.mjs b/apps/landing/next.config.mjs new file mode 100644 index 00000000..743e4d69 --- /dev/null +++ b/apps/landing/next.config.mjs @@ -0,0 +1,8 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + /** We already do linting and typechecking as separate tasks in CI */ + eslint: { ignoreDuringBuilds: true }, + typescript: { ignoreBuildErrors: true }, +}; + +export default nextConfig; -- cgit v1.2.3-70-g09d2