fix: allow unoptimized images

This commit is contained in:
httpjamesm
2024-06-11 01:20:30 -04:00
parent 6cd36816ab
commit 7cdfe2d194
+4 -1
View File
@@ -1,7 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "export"
output: "export",
images: {
unoptimized: true,
}
};
export default nextConfig;