6 lines
186 B
JavaScript
6 lines
186 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {serverActions: { allowedOrigins: ["app.codeflash.ai", "localhost:3000"], }}
|
|
}
|
|
|
|
module.exports = nextConfig
|