first commit

This commit is contained in:
Dimas Vindyawan
2025-12-30 14:34:03 +07:00
commit 6c3af6a820
255 changed files with 40351 additions and 0 deletions

25
next.config.mjs Normal file
View File

@@ -0,0 +1,25 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
allowedDevOrigins: ["*.localhost", "*.local", "*.127.0.0.1", "*.0.0.0.0"],
images: {
minimumCacheTTL: 43200, // 12 hours
dangerouslyAllowSVG: true,
dangerouslyAllowLocalIP: process.env.NODE_ENV === "development",
remotePatterns: [
{
protocol: "http",
hostname: "localhost",
port: "3000",
pathname: "/**",
},
{
protocol: "https",
hostname: "placehold.co",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;