Skip to content

Commit

Permalink
Add properties so it can be overriden
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Jan 25, 2025
1 parent b68d2fc commit bc54439
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
reactStrictMode: true,
output: "standalone",
basePath: "",
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack']
});
return config;
}
},
};

export default nextConfig;

0 comments on commit bc54439

Please sign in to comment.