docs/next.config.mjs

15 lines
286 B
JavaScript
Raw Normal View History

2024-10-06 15:51:56 -04:00
/** @type {import("next").NextConfig} */
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.pulseapp.cc",
},
],
},
};
export default nextConfig;