Q58Connect/next.config.mjs

20 lines
341 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "q58.club",
},
{
protocol: "https",
hostname: "i-aws.czl.net",
},
],
},
};
export default nextConfig;