Files
ballistic-builder/next.config.ts
2024-11-26 00:43:58 -05:00

29 lines
581 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
experimental: {
optimizePackageImports: ["@chakra-ui/react"],
},
/* module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'tailwindui.com',
port: '',
pathname: '/plus/img/logos/**',
}
],
},
},*/
};
export default nextConfig;