11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: "https", hostname: "**" },
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|