feat: update nextjs config

This commit is contained in:
Oleg Proskurin 2025-10-01 23:34:26 +07:00
parent 7d2c038054
commit 10e84c4d73
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,10 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ output: 'export',
images: {
unoptimized: true,
},
}; };
export default nextConfig; export default nextConfig;