将 Next.js (Nextra) 应用程序部署到子目录中

问题描述 投票:0回答:1

我有一个使用 Nextra (next.js) 构建的文档网站。我希望将其部署到我网站的

/resources
子目录中,但不知道如何部署。我的网站由 Framer 托管,DNS 位于 Route 53 上。我已经在 Next.js 配置中配置了基本路径

next.js subdirectory nextra
1个回答
0
投票

您可以使用

basePath
配置选项:

// File: next.config.js

module.exports = {
  basePath: '/resources',
}

https://nextjs.org/docs/app/api-reference/next-config-js/basePath

© www.soinside.com 2019 - 2024. All rights reserved.