Files
frontend/next.config.ts
T
Thanh Quy - wolf 4cc1e76dd7 Fix some error
2026-03-22 15:47:10 +07:00

15 lines
461 B
TypeScript

import type { NextConfig } from "next";
/**
* Next.js configuration.
*
* Currently uses all defaults — no custom rewrites, redirects, or image domains needed.
* Add options here as the project grows (e.g. `images.remotePatterns` when using
* external image URLs, `experimental.serverActions` for form handling, etc.)
*
* Docs: https://nextjs.org/docs/app/api-reference/next-config-js
*/
const nextConfig: NextConfig = {};
export default nextConfig;