Files
GreenHomeUI/next.config.ts
alireza 31b58b7151
Some checks failed
Deploy MyApp on Same Server / build-and-deploy (push) Failing after 1s
fix bug and version check
2025-12-18 19:39:05 +03:30

10 lines
181 B
TypeScript

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
reactStrictMode: true,
experimental: {},
turbopack: { root: __dirname },
}
export default nextConfig