fix(useDescriptorStore): correct file path for descriptor proxy imports
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
This commit is contained in:
parent
c0e9efc5d8
commit
6dffa78235
|
@ -8,7 +8,7 @@ export const useDescriptorStore = defineStore('descriptorStore', () => {
|
|||
if (Object.keys(descriptors).length) return descriptors;
|
||||
|
||||
const currentDescriptors = {};
|
||||
const files = import.meta.glob(`src/**/*DescriptorProxy.vue`);
|
||||
const files = import.meta.glob(`/src/**/*DescriptorProxy.vue`);
|
||||
const moduleParser = {
|
||||
account: 'user',
|
||||
client: 'customer',
|
||||
|
|
Loading…
Reference in New Issue