我想知道是否可以在访问 Markdown 文件的 Vercel 上部署 Remix.run 项目。一个类似博客教程的项目;
// posts.js
const postsPath = path.join(__dirname, "..", "posts");
警告说:“如果您没有使用 Remix App Server,您可能需要在路径上添加一个额外的“..”。另请注意,您不能在没有持久文件的任何地方部署此演示系统。”。
我尝试了一个额外的“..”。我认为 Vecel 可以有一个永久的文件系统,"ENABLE_FILE_SYSTEM_API": "1"
但显然不是这样。或者是吗?
这是混音配置:
module.exports = {
appDirectory: 'app',
assetsBuildDirectory: 'public/build',
publicPath: '/build/',
serverBuildDirectory: 'api/_build',
ignoredRouteFiles: ['.*'],
// mdx,
}