Files
frontend/next.config.ts
T
TakahashiNguyen ddaa1ad873
Release package / release (push) Failing after 24m2s
fix: change from static execute to dynamic execute (#19)
Reviewed-on: #19
2026-03-31 07:16:53 +00:00

25 lines
617 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: 'standalone',
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
};
export default nextConfig;