basaHoushanPanel/next.config.ts

17 lines
283 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: "https",
hostname: "api.houshan.ai",
pathname: "**",
},
],
},
};
export default nextConfig;