Evo.External.App/apps/web/next.config.js
2023-11-03 11:57:10 +03:00

15 lines
246 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: 'flowbite.com',
},
],
},
reactStrictMode: true,
transpilePackages: ['ui'],
};
module.exports = nextConfig;