Files
2026-05-17 18:29:30 -05:00

12 lines
198 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
}
module.exports = nextConfig