我想在一个域中合并2个Gatsby网站,例如,mydomain.com 中的Gatsby1(登录页面(和 mydomain.com/blog 中的Gatsby2(博客(,我该怎么做?
创建两个 Gatbsy 项目。可以从根mydomain.com
配置一个。需要使用路径前缀:
gatsby-config.js
module.exports = {
pathPrefix: `/blog`,
}
构建时,需要使用标志:gatsby build --prefix-paths
。