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