Files
GreenHomeUI/next.config.ts
alireza 3870d66f7d
Some checks failed
Deploy MyApp on Same Server / build-and-deploy (push) Failing after 5s
fix ui and add pwa
2025-11-15 17:27:10 +03:30

10 lines
180 B
TypeScript

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