react-code-dataset / next.js /test /e2e /app-dir /actions-allowed-origins /safe-origins /next.config.js
| /** @type {import('next').NextConfig} */ | |
| module.exports = { | |
| productionBrowserSourceMaps: true, | |
| logging: { | |
| fetches: {}, | |
| }, | |
| experimental: { | |
| serverActions: { | |
| allowedOrigins: ['localhost:' + process.env.PORT], | |
| }, | |
| }, | |
| } | |