Frontend/next.config.mjs

16 lines
271 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 16:45:04 +00:00
};
export default nextConfig;