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

24 lines
388 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'itsthevine.com',
},
],
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"]
});
return config;
}
};
export default nextConfig;