12 أسطر
236 B
JavaScript
12 أسطر
236 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
allowedDevOrigins: [
|
|
"http://127.0.0.1:3000",
|
|
"http://localhost:3000",
|
|
"http://192.168.1.12:3000",
|
|
],
|
|
};
|
|
|
|
export default nextConfig;
|