Frontend/next.config.mjs

21 lines
377 B
JavaScript
Raw Normal View History

2024-04-14 16:45:04 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
2024-04-14 17:46:37 +00:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "git.fascinated.cc",
pathname: "/**",
},
2024-04-14 18:55:07 +00:00
{
protocol: "https",
hostname: "api.mcutils.xyz",
pathname: "/**",
},
2024-04-14 17:46:37 +00:00
],
},
2024-04-14 16:45:04 +00:00
};
export default nextConfig;