simple-links/next.config.js
Fascinated 0aeb7bea4b
All checks were successful
Publish Docker Image / docker (push) Successful in 1m50s
more spaces insead of tabs
2023-07-10 05:08:39 +01:00

16 lines
252 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
port: "",
pathname: "/**",
},
],
},
};
module.exports = nextConfig;