Files
re-AstarCupWeb/next.config.ts
2026-02-05 12:05:12 +08:00

26 lines
455 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'a.ppy.sh',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'assets.ppy.sh',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'osu.ppy.sh',
pathname: '/**',
},
],
},
};
export default nextConfig;