Files
solo-company-feed/next.config.js
爱喝水的木子 bfdf4843e1 OPC
2026-03-13 16:28:51 +08:00

17 lines
264 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: true
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "img.020417.xyz"
}
]
}
};
module.exports = nextConfig;