init: add fuse-react v8.3.5 skeleton

This commit is contained in:
2023-05-30 21:07:44 +01:00
commit 3a760d2646
543 changed files with 102541 additions and 0 deletions

13
aliases.js Normal file
View File

@@ -0,0 +1,13 @@
const aliases = (prefix = `src`) => ({
'@fuse': `${prefix}/@fuse`,
'@history': `${prefix}/@history`,
'@lodash': `${prefix}/@lodash`,
'@mock-api': `${prefix}/@mock-api`,
'app/store': `${prefix}/app/store`,
'app/shared-components': `${prefix}/app/shared-components`,
'app/configs': `${prefix}/app/configs`,
'app/theme-layouts': `${prefix}/app/theme-layouts`,
'app/AppContext': `${prefix}/app/AppContext`,
});
module.exports = aliases;