Frontend/next.config.mjs
Liam cb15f18bfe
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 8s
start work on the frontend
2024-04-14 18:46:37 +01:00

16 lines
271 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "git.fascinated.cc",
pathname: "/**",
},
],
},
};
export default nextConfig;