fix: remove experimental TurboPack configuration from next.config.ts

This commit is contained in:
2025-09-19 19:41:03 +02:00
parent 0ee01bc313
commit 84c6d72faf

View File

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