Skip to content

Commit cfd65c8

Browse files
committed
fix(file-loader): use base62 digest type for file names
file-loader doesn't support base64url, so use base62 instead
1 parent fb1bc19 commit cfd65c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ function WebpackConfig(
323323
esModule: false,
324324
name:
325325
mode === "development"
326-
? "[path][name]-[sha256:contenthash:base64url:8].[ext]"
327-
: "[sha256:contenthash:base64url:8].[ext]"
326+
? "[path][name]-[sha256:contenthash:base62:8].[ext]"
327+
: "[sha256:contenthash:base62:8].[ext]"
328328
}
329329
};
330330

0 commit comments

Comments
 (0)