kakawa/next.config.mjs

8 lines
150 B
JavaScript
Raw Normal View History

2024-09-23 08:00:25 +00:00
/** @type {import('next').NextConfig} */
2024-09-23 17:35:32 +00:00
const nextConfig = {
output: 'export',
images: { unoptimized: true },
};
2024-09-23 08:00:25 +00:00
export default nextConfig;