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