iconoir/iconoir.com/next.config.js
2023-10-29 04:09:56 +01:00

14 lines
227 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
compiler: {
styledComponents: true,
},
images: {
unoptimized: true,
},
};
module.exports = nextConfig;