mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
14 lines
203 B
JavaScript
14 lines
203 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/',
|
|
destination: '/news/1'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
export default nextConfig
|