Liam
e6a28ed268
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m38s
23 lines
416 B
JavaScript
23 lines
416 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: "/**",
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
mdxRs: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |