typedRoutes
此 API 目前处于实验阶段,可能随时更改。
对 静态类型链接 的实验性支持。此功能需要在您的项目中使用 App 路由器以及 TypeScript。
next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
typedRoutes: true,
},
}
module.exports = nextConfig
这有帮助吗?
对 静态类型链接 的实验性支持。此功能需要在您的项目中使用 App 路由器以及 TypeScript。
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
typedRoutes: true,
},
}
module.exports = nextConfig
这有帮助吗?