Skip to content

Commit

Permalink
chore: replace any with string (#13850)
Browse files Browse the repository at this point in the history
  • Loading branch information
cunzaizhuyi committed Jul 17, 2023
1 parent f54e8da commit 4606fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite/src/node/build.ts
Expand Up @@ -408,7 +408,7 @@ export function resolveBuildOptions(
}

// normalize false string into actual false
if ((resolved.minify as any) === 'false') {
if ((resolved.minify as string) === 'false') {
resolved.minify = false
}

Expand Down

0 comments on commit 4606fd8

Please sign in to comment.