Assets folder changes

This commit is contained in:
Bahadır Sofuoğlu
2022-11-16 12:30:29 +03:00
parent b1b45028ab
commit 913c84e7b8
167 changed files with 39 additions and 8082 deletions

View File

@@ -4,7 +4,7 @@ import { useLayoutService } from '@/layout/composables/layoutService';
const { layoutConfig } = useLayoutService();
const logoUrl = () => {
return new URL(`/src/assets/layout/images/${layoutConfig.darkTheme.value ? 'logo-white' : 'logo-dark'}.svg`, import.meta.url).href;
return new URL(`/public/layout/images/${layoutConfig.darkTheme.value ? 'logo-white' : 'logo-dark'}.svg`, import.meta.url).href;
};
</script>