Q58Connect/next.config.mjs

16 lines
261 B
JavaScript

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