11 lines
219 B
TypeScript
11 lines
219 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const config: NextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
serverActions: { allowedOrigins: ["sp.semih.ai", "localhost:3000"] },
|
|
},
|
|
};
|
|
|
|
export default config;
|