Files
winninghunter/next.config.mjs
T
2026-07-07 20:40:43 +03:00

11 lines
205 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
typescript: { ignoreBuildErrors: false },
turbopack: {
root: process.cwd()
}
};
export default nextConfig;