webTemplate/next.config.mjs

8 lines
171 B
JavaScript
Raw Permalink Normal View History

2026-08-20 15:55:38 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: process.env.NEXT_PUBLIC_BASE_PATH || "",
reactStrictMode: true,
};
export default nextConfig;