eexiv/next.config.mjs

9 lines
131 B
JavaScript
Raw Normal View History

2024-02-09 19:00:26 -08:00
/** @type {import('next').NextConfig} */
2024-02-11 11:16:49 -08:00
const nextConfig = {
images: {
unoptimized: true,
},
}
2024-02-09 19:00:26 -08:00
2024-02-11 11:16:49 -08:00
export default nextConfig