next.config.mjs 309 B

123456789101112131415
  1. // import type { NextConfig } from "next";
  2. /** @type {import('next').NextConfig} */
  3. const nextConfig = {
  4. /* config options here */
  5. images: {
  6. remotePatterns: [
  7. {
  8. protocol: "https",
  9. hostname: "hi-po.oss-cn-beijing.aliyuncs.com",
  10. },
  11. ],
  12. },
  13. };
  14. export default nextConfig;