Files
AGS_IT_Solutions_Website/next.config.js
2022-09-20 15:58:59 +02:00

13 lines
216 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
outputStandalone: true,
},
images: {
domains: ["cdn.discordapp.com"],
},
};
module.exports = nextConfig;