agb/website/agb/next.config.mjs
2024-04-09 00:33:32 +01:00

11 lines
193 B
JavaScript

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