This repository has been archived on 2026-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
itsthevine/next.config.ts
T
2026-03-14 11:32:25 -05:00

24 lines
375 B
TypeScript

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