mirror of
https://github.com/woodchen-ink/Q58Connect.git
synced 2025-07-17 21:41:55 +08:00
20 lines
341 B
JavaScript
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;
|