Spaces:
Running
Running
/** @type {import('next').NextConfig} */ | |
const nextConfig = { | |
reactStrictMode: true, | |
swcMinify: true, | |
async redirects() { | |
return [ | |
{ | |
source: "/", | |
destination: "/icons-editor", | |
permanent: false, | |
}, | |
]; | |
}, | |
i18n: { | |
locales: [ | |
"en", | |
"fr", | |
"cz", | |
"uk", | |
"hu", | |
"de", | |
"es", | |
"gr", | |
"da", | |
"ru", | |
"tk", | |
"ch", | |
"it", | |
], | |
defaultLocale: "en", | |
}, | |
}; | |
module.exports = nextConfig; | |