www/next.config.mjs

15 lines
286 B
JavaScript
Raw Normal View History

2024-09-12 17:28:33 -07:00
/** @type {import('next').NextConfig} */
2024-09-13 18:27:40 -07:00
const nextConfig = {
output: "standalone",
2024-09-18 20:32:07 -07:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.pulseapp.cc",
},
],
},
2024-09-13 18:27:40 -07:00
};
2024-09-12 17:28:33 -07:00
export default nextConfig;