Files
Mace-AIO-Discord-Bot---With…/dashboard/next.config.js
2026-07-21 17:35:08 +02:00

18 lines
318 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.discordapp.com',
},
],
},
webpack: (config) => {
config.cache = false
return config
}
}
module.exports = nextConfig