mirror of
https://github.com/mblanke/holiday-travel-app.git
synced 2026-03-01 13:30:20 -05:00
6 lines
153 B
JavaScript
6 lines
153 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: { serverActions: { allowedOrigins: ['*'] } }
|
|
};
|
|
export default nextConfig;
|