6 lines
185 B
JavaScript
Executable File
6 lines
185 B
JavaScript
Executable File
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: { serverActions: { allowedOrigins: ["*"] } },
|
|
};
|
|
module.exports = nextConfig; |