Frontend/next.config.mjs
Liam 8203b10b71
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Has been cancelled
add basic player page
2024-04-14 19:55:07 +01:00

21 lines
377 B
JavaScript

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