Files
UTMS-NG-FE/next.config.mjs
2026-04-21 06:30:48 +07:00

10 lines
161 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
typedRoutes: false
}
}
export default nextConfig