From 8418a7dd7fe23749040257b7ea9231adcd0a11b0 Mon Sep 17 00:00:00 2001 From: "shiweisong.ssw" Date: Tue, 4 Jul 2023 13:40:05 +0800 Subject: [PATCH] feat: enable trailingSlash --- datacenter/next.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/datacenter/next.config.js b/datacenter/next.config.js index 3a5f3a0d8..d1f431889 100644 --- a/datacenter/next.config.js +++ b/datacenter/next.config.js @@ -9,7 +9,8 @@ const nextConfig = { }, env: { API_BASE_URL: process.env.API_BASE_URL || 'http://127.0.0.1:5000' - } + }, + trailingSlash: true } module.exports = nextConfig