diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-19 19:24:29 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-19 19:24:29 +0000 |
| commit | 2c03ee104d06e1be712356efa06a8b3cbe2d09dc (patch) | |
| tree | e11fee36ae95dfc9255e42054b55b048973a2448 /apps/landing/next.config.mjs | |
| parent | eed65a424630be5e7d673c6ac3f19b72b2d79dc7 (diff) | |
| download | karakeep-2c03ee104d06e1be712356efa06a8b3cbe2d09dc.tar.zst | |
refactor: Move landing page to its own app to deploy it separately
Diffstat (limited to 'apps/landing/next.config.mjs')
| -rw-r--r-- | apps/landing/next.config.mjs | 8 |
1 files changed, 8 insertions, 0 deletions
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; |
