This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-serve-actions/next.config.mjs
2024-05-23 16:55:29 +02:00

11 lines
178 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: {
allowedOrigins: ['localhost']
}
}
};
export default nextConfig;