Skip to content

Commit 5c0eef8

Browse files
[bugfix] Fix CSS import path in CloudTemplate.vue for build
- Change from alias path to relative path for fonts.css import - Fixes build error: "ENOENT: no such file or directory" for fonts.css
1 parent 43db891 commit 5c0eef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platform/onboarding/cloud/components/CloudTemplate.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ const handleDownloadClick = () => {
7676
}
7777
</script>
7878
<style>
79-
@import '@/platform/onboarding/cloud/assets/css/fonts.css';
79+
@import '../assets/css/fonts.css';
8080
</style>

0 commit comments

Comments
 (0)