12 lines
207 B
JavaScript
12 lines
207 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
experimental: {
|
|
serverActions: {
|
|
allowedOrigins: ["localhost:3000"]
|
|
}
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|