13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ["10.20.0.188"],
|
|
experimental: {
|
|
turbo: {
|
|
// Turbopack specific configuration if needed
|
|
}
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|