feat: setup monorepo for static frontend app (vdn-static)

This commit is contained in:
Benjamin Singleton 2025-06-09 22:23:16 -05:00 committed by Sheldon Cooper
parent 1049d26a3d
commit 4eefaa7cba
48 changed files with 3219 additions and 337 deletions

5
apps/vdn-static/src/shims-vue.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}