Files
frontend/next.config.ts
T
TakahashiNg 174e46a50a
Release package / release (push) Failing after 1m50s
Release package / build-and-push (push) Failing after 2m25s
Release package / deploy-via-portainer (push) Has been skipped
ci: update script
2026-03-26 14:40:14 +00:00

20 lines
614 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 = {
output: "export", // Bắt buộc để tạo ra thư mục /out
images: {
unoptimized: true, // Thường cần thiết cho static export
},
};
export default nextConfig;