privatedocs/next.config.ts
2025-03-25 20:52:21 +01:00

14 lines
240 B
TypeScript

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