diff --git a/packages/core/src/Site/index.ts b/packages/core/src/Site/index.ts index 4d1de19af8..f91c846466 100644 --- a/packages/core/src/Site/index.ts +++ b/packages/core/src/Site/index.ts @@ -1276,7 +1276,7 @@ export class Site { const copyFontsDir = dirsToCopy.map((dir) => { const srcPath = path.join(coreWebRootPath, 'dist', dir); - const destPath = path.join(this.siteAssetsDestPath, 'css', dir); + const destPath = path.join(this.siteAssetsDestPath, dir); return fs.copy(srcPath, destPath); });