Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
luciorubeens committed Jun 16, 2022
1 parent f8b2207 commit e8b44cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ui/Icon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const props = withDefaults(defineProps<Props>(), { iconSize: 1.5, color: 'inheri
const currentIcon = shallowRef('');
const isReady = ref(false);
onMounted(async () => {
const icon = await defineAsyncComponent(() => import(`@/components/common/Icons/${props.name}.vue`));
const icon = await defineAsyncComponent(() => import(`../common/Icons/${props.name}.vue`));
currentIcon.value = icon;
isReady.value = true;
});
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default () => {
return defineConfig({
build: {
chunkSizeWarningLimit: 1000,
sourcemap: true,
sourcemap: false,
rollupOptions: {
output: {
entryFileNames: `assets/[name].js`,
Expand Down

0 comments on commit e8b44cc

Please sign in to comment.