Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -26,7 +26,7 @@ export function OssPlugin({ enableOss }: OssPluginParamsType): Plugin { |
26 | 26 | |
27 | 27 | for (const item of needCopyFilePathList) { |
28 | 28 | const { name, ext } = parse(item) |
29 | - copyFileSync(item, `${outputDirPath}/${name}.${ext}`) | |
29 | + copyFileSync(item, `${outputDirPath}/${name}${ext}`) | |
30 | 30 | } |
31 | 31 | |
32 | 32 | // eslint-disable-next-line no-console | ... | ... |