11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
experimental: {
|
|
serverActions: true,
|
|
},
|
|
output: "standalone"
|
|
};
|
|
|
|
module.exports = nextConfig;
|