diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-26 02:26:33 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-26 02:27:55 +0000 |
| commit | d1e8b0017dee12e04dbad9e85f7a8b497e584d1b (patch) | |
| tree | ecf1cb4b9ec291776dada965179a2cf9652cc537 /apps/landing/next.config.mjs | |
| parent | 4ab081511b328085d6c7c9990da2abc1a6e920e1 (diff) | |
| download | karakeep-d1e8b0017dee12e04dbad9e85f7a8b497e584d1b.tar.zst | |
ui: Migrate to the new logo everywhere
Diffstat (limited to 'apps/landing/next.config.mjs')
| -rw-r--r-- | apps/landing/next.config.mjs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/landing/next.config.mjs b/apps/landing/next.config.mjs index 743e4d69..c9153017 100644 --- a/apps/landing/next.config.mjs +++ b/apps/landing/next.config.mjs @@ -1,5 +1,12 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + webpack: (config) => { + config.module.rules.push({ + test: /\.svg$/, + use: ["@svgr/webpack"], + }); + return config; + }, /** We already do linting and typechecking as separate tasks in CI */ eslint: { ignoreDuringBuilds: true }, typescript: { ignoreBuildErrors: true }, |
