123456789101112131415 |
- // import type { NextConfig } from "next";
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- /* config options here */
- images: {
- remotePatterns: [
- {
- protocol: "https",
- hostname: "hi-po.oss-cn-beijing.aliyuncs.com",
- },
- ],
- },
- };
- export default nextConfig;
|