子文件夹 /blog 中的下一个 js 将 index.js 文件例如更改为 _blog_index.js?
Next js in subfolder /blog change index.js file for example to _blog_index.js?
在子文件夹 /blog 中,我可以将 index.js 文件更改为 _blog_index.js 并将其读取为 index.js?
每个子文件夹都有 index.js 文件,有时在代码编辑器中很难阅读,当我有很多子文件夹和打开很多标签时。
谢谢你
在 next.config.js
中使用 rewrites()
时,这是可能的:
const nextConfig = {
async rewrites() {
return [
{
source: "/blog",
destination: "/blog/_blog_index",
},
];
},
};
module.exports = nextConfig;
但是,请记住 rewrites()
won't be supported if you're planning to export your app to static HTML 因为它需要 Node.js 服务器。
在子文件夹 /blog 中,我可以将 index.js 文件更改为 _blog_index.js 并将其读取为 index.js?
每个子文件夹都有 index.js 文件,有时在代码编辑器中很难阅读,当我有很多子文件夹和打开很多标签时。
谢谢你
在 next.config.js
中使用 rewrites()
时,这是可能的:
const nextConfig = {
async rewrites() {
return [
{
source: "/blog",
destination: "/blog/_blog_index",
},
];
},
};
module.exports = nextConfig;
但是,请记住 rewrites()
won't be supported if you're planning to export your app to static HTML 因为它需要 Node.js 服务器。