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