aboutsummaryrefslogtreecommitdiffstats
path: root/apps/landing/next.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/landing/next.config.mjs')
-rw-r--r--apps/landing/next.config.mjs15
1 files changed, 0 insertions, 15 deletions
diff --git a/apps/landing/next.config.mjs b/apps/landing/next.config.mjs
deleted file mode 100644
index c9153017..00000000
--- a/apps/landing/next.config.mjs
+++ /dev/null
@@ -1,15 +0,0 @@
-/** @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 },
-};
-
-export default nextConfig;