From e82c4b5b3ac71a94133b910f9fb1528fa57783ed Mon Sep 17 00:00:00 2001 From: Edd Date: Tue, 4 Oct 2022 15:52:21 -0400 Subject: [PATCH] chore(trading): always prefix static assets with dot (#1615) --- apps/trading/next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/trading/next.config.js b/apps/trading/next.config.js index f8bb720a4..21b95054d 100644 --- a/apps/trading/next.config.js +++ b/apps/trading/next.config.js @@ -19,6 +19,7 @@ const nextConfig = { // See: https://github.com/gregberge/svgr svgr: false, }, + assetPrefix: '.', pageExtensions: ['page.tsx', 'page.jsx'], };