iconoir/iconoir.com/next.config.js

14 lines
227 B
JavaScript
Raw Normal View History

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
compiler: {
styledComponents: true,
},
2023-01-11 19:08:14 +01:00
images: {
unoptimized: true,
},
};
module.exports = nextConfig;