Rainnny7
30f5e779de
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Failing after 1m17s
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "cdn.pulseapp.cc",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|