2026-05-12 18:33:35 +07:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-06-22 20:04:18 +07:00
|
|
|
// allowedDevOrigins: ['172.16.6.27'],
|
2026-06-15 16:16:32 +07:00
|
|
|
output: "standalone",
|
|
|
|
|
images: { unoptimized: true },
|
|
|
|
|
typescript: {
|
|
|
|
|
ignoreBuildErrors: true,
|
|
|
|
|
},
|
2026-05-12 18:33:35 +07:00
|
|
|
/* config options here */
|
2026-06-15 16:16:32 +07:00
|
|
|
|
2026-05-12 18:33:35 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|