iconoir/iconoir.com/next.config.js
2023-01-11 19:08:14 +01:00

18 lines
333 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compiler: {
styledComponents: true,
},
images: {
unoptimized: true,
},
async redirects() {
return [
{ source: '/docs', destination: '/docs/introduction', permanent: true },
];
},
};
module.exports = nextConfig;