This commit is contained in:
2026-06-16 09:33:44 -06:00
parent 10edc664e8
commit 02ca889bc2
2 changed files with 8 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
services:
app:
teaching-design:
build: .
expose:
- 3001

7
src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent
export default component
}