From 703792fbda74bd50cd23e0d131290097083f9267 Mon Sep 17 00:00:00 2001 From: Alessio Date: Fri, 29 Mar 2024 11:12:26 -0700 Subject: [PATCH] Add a simple path prefix for static assets --- apps/trading/next.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/trading/next.config.js b/apps/trading/next.config.js index dd4796f56..ef95ed833 100644 --- a/apps/trading/next.config.js +++ b/apps/trading/next.config.js @@ -39,6 +39,8 @@ const nextConfig = { GIT_COMMIT: commitHash, GIT_TAG: tag, }, + basePath: '/apps/vegas', // Set the base path + assetPrefix: '/apps/vegas', // Set the asset prefix }; module.exports = SENTRY_AUTH_TOKEN