next.js/test/e2e/app-dir/actions-allowed-origins/safe-origins/next.config.js
next.config.js13 lines242 B
/** @type {import('next').NextConfig} */
module.exports = {
  productionBrowserSourceMaps: true,
  logging: {
    fetches: {},
  },
  experimental: {
    serverActions: {
      allowedOrigins: ['localhost:' + process.env.PORT],
    },
  },
}
Quest for Codev2.0.0
/
SIGN IN