refactor: reached same app state using vite

This commit is contained in:
2024-01-28 15:56:19 +01:00
parent 9179ab10ac
commit e478837164
27 changed files with 805 additions and 207 deletions

6
src/utils/types.ts Normal file
View File

@@ -0,0 +1,6 @@
export type Manifest = {
projects: Array<{
name: string;
files: Array<string>;
}>;
};