silphius/sylvite.config.js

17 lines
360 B
JavaScript
Raw Normal View History

2024-11-04 12:39:06 -06:00
export const manifest = {
'@/sylvite/cha0s-remix': {},
2024-11-04 22:12:16 -06:00
// '@/sylvite/cha0s-remix/cors': {},
2024-11-04 12:39:06 -06:00
'@/sylvite/cha0s-remix/remix': {},
'@/silphius': {},
};
export const meta = {
dirname: import.meta.dirname,
resolve: (url) => {
if (url.startsWith('@')) {
url = ['./app', url.slice(1)].join('');
}
return import.meta.resolve(url);
},
}