mirror of
https://github.com/PlatypusPus/MushroomEmpire.git
synced 2026-02-08 06:28:58 +00:00
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
typedRoutes: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|