mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-19 02:33:43 +08:00
27 lines
483 B
TypeScript
27 lines
483 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img3.doubanio.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img1.doubanio.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img2.doubanio.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img9.doubanio.com',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|