From 6d3490cd689f14248718537b9757b6ac760d4f8b Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Tue, 19 Jul 2022 14:20:23 -0700 Subject: [PATCH] Turn off Next.js font inlining (#668) --- web/next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/next.config.js b/web/next.config.js index 56f643d3..37758952 100644 --- a/web/next.config.js +++ b/web/next.config.js @@ -4,6 +4,7 @@ const API_DOCS_URL = 'https://docs.manifold.markets/api' module.exports = { staticPageGenerationTimeout: 600, // e.g. stats page reactStrictMode: true, + optimizeFonts: false, experimental: { externalDir: true, optimizeCss: true,