InvestWeb/next.config.js

17 lines
314 B
JavaScript
Raw Normal View History

2022-11-23 17:20:36 -05:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
2023-01-21 05:36:29 -05:00
domains: [
"cdn.discordapp.com",
"static-cdn.jtvnw.net",
"cdn.7tv.app",
"cdn.betterttv.net",
"cdn.frankerfacez.com",
],
},
2022-11-23 17:20:36 -05:00
};
module.exports = nextConfig;