Further Cleanup removing old Compositor

This commit is contained in:
Samuel Andert
2023-08-07 18:34:23 +02:00
parent 2ca67e0981
commit beeb298c35
29 changed files with 208 additions and 479 deletions

View File

@ -1,10 +0,0 @@
import componentNames from 'virtual:components-list';
const components = {};
componentNames.forEach(path => {
const name = path.split('/').pop(); // Extract just the file name from the path
components[name] = () => import( /* @vite-ignore */ `/src/lib/components/${path}.svelte`);
});
export default components;