Skip to content

Commit 192413d

Browse files
author
Ivan Strilets
committed
update config file
1 parent 0d1f0d8 commit 192413d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

next.config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ const nextConfig: NextConfig = {
66

77
webpack(config) {
88
// Grab the existing rule that handles SVG imports
9-
const fileLoaderRule = config.module.rules.find((rule) =>
9+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
10+
const fileLoaderRule = config.module.rules.find((rule: any) =>
1011
rule.test?.test?.(".svg")
1112
);
1213

0 commit comments

Comments
 (0)