Q58Connect/next.config.mjs
2024-10-10 09:38:04 +08:00

16 lines
268 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "shuzimumin.com",
},
],
},
};
export default nextConfig;