import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'itsthevine.com', }, ], }, turbopack: { rules: { '*.svg': { loaders: ['@svgr/webpack'], as: '*.js', }, }, } }; export default nextConfig;