mirror of
https://github.com/yusufipk/YTChatHub.git
synced 2026-09-11 19:06:14 +00:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
serverActions: true
|
|
}
|
|
};
|
|
|
|
module.exports = nextConfig;
|