Files
XRLMS/next.config.ts

10 lines
146 B
TypeScript
Raw Permalink Normal View History

2025-10-29 21:18:01 +09:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-11-06 16:42:55 +09:00
images: {
unoptimized: false,
},
2025-10-29 21:18:01 +09:00
};
export default nextConfig;