next.config.js 190 B

123456789101112131415
  1. // @ts-check
  2. /**
  3. * @type {import('next').NextConfig}
  4. **/
  5. const nextConfig = {
  6. output: "export",
  7. images: {
  8. unoptimized: true,
  9. },
  10. basePath: "",
  11. };
  12. module.exports = nextConfig;