mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
compiler: {
|
|
styledComponents: true,
|
|
},
|
|
output: "export",
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
export default nextConfig;
|