Files
YTChatHub/apps/client/next.config.js
T

10 lines
166 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
serverActions: true
}
};
module.exports = nextConfig;