InvestWeb/next.config.js

11 lines
232 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: {
domains: ["cdn.discordapp.com", "static-cdn.jtvnw.net", "cdn.7tv.app"],
},
2022-11-23 17:20:36 -05:00
};
module.exports = nextConfig;