From 0c879d545eb1a6e4ce7369376b6ca23e564ed7d5 Mon Sep 17 00:00:00 2001 From: mashharuki Date: Sat, 8 Jun 2024 19:43:00 +0900 Subject: [PATCH] chore: Add basePath and assetPrefix to next.config.js --- pkgs/frontend/next.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/frontend/next.config.js b/pkgs/frontend/next.config.js index f2cc515..8cdc828 100644 --- a/pkgs/frontend/next.config.js +++ b/pkgs/frontend/next.config.js @@ -26,6 +26,8 @@ const nextConfig = withPWA({ "bafkreidkyzvx746bw6465ky6wwmb23lbwqp6qbyeoosfdbi4osdkemtqle.ipfs.w3s.link", ], }, + basePath: "/IntmaxRepo", + assetPrefix: "/IntmaxRepo/", }); module.exports = nextConfig;