This commit is contained in:
2026-04-15 09:29:54 +00:00
parent 52973e9581
commit 4e3d0f28c4
10 changed files with 10471 additions and 3 deletions

20
next.config.ts Normal file
View File

@@ -0,0 +1,20 @@
import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
reactStrictMode: true,
poweredByHeader: false,
images: {
unoptimized: false,
},
async rewrites() {
return [
{
source: '/openapi.json',
destination: '/api/openapi',
},
]
},
}
export default nextConfig