feat: configure allowed development origins and experimental TurboPack settings

This commit is contained in:
2025-09-19 19:39:55 +02:00
parent 49b6f79545
commit 14b0a44117

View File

@@ -1,7 +1,12 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
allowedDevOrigins: ["10.20.0.188"],
experimental: {
turbo: {
// Turbopack specific configuration if needed
}
}
};
export default nextConfig;