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