Files
cloudflare__vinext/examples/hackernews/next.config.js
2026-02-24 09:29:39 -06:00

14 lines
203 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/',
destination: '/news/1'
}
]
}
}
export default nextConfig