Skip to content

Commit 25722a6

Browse files
committed
fix: build html path
1 parent daf1301 commit 25722a6

3 files changed

Lines changed: 20 additions & 18 deletions

File tree

frontend/components.d.ts

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,24 @@
33
// Generated by unplugin-vue-components
44
// Read more: https://github.com/vuejs/core/pull/3399
55
// biome-ignore lint: disable
6-
export {}
6+
export {};
77

88
/* prettier-ignore */
9-
declare module 'vue' {
10-
export interface GlobalComponents {
11-
JoinMeetingForm: typeof import('./src/components/JoinMeetingForm.vue')['default']
12-
LucideAlertCircle: typeof import('~icons/lucide/alert-circle')['default']
13-
LucideMic: typeof import('~icons/lucide/mic')['default']
14-
LucideMicOff: typeof import('~icons/lucide/mic-off')['default']
15-
LucidePhoneOff: typeof import('~icons/lucide/phone-off')['default']
16-
LucidePlus: typeof import('~icons/lucide/plus')['default']
17-
LucideVideo: typeof import('~icons/lucide/video')['default']
18-
LucideVideoOff: typeof import('~icons/lucide/video-off')['default']
19-
RouterLink: typeof import('vue-router')['RouterLink']
20-
RouterView: typeof import('vue-router')['RouterView']
21-
SFUDashboard: typeof import('./src/components/SFUDashboard.vue')['default']
22-
VideoPreview: typeof import('./src/components/VideoPreview.vue')['default']
23-
}
9+
declare module "vue" {
10+
export interface GlobalComponents {
11+
JoinMeetingForm: typeof import(
12+
"./src/components/JoinMeetingForm.vue",
13+
)["default"];
14+
LucideAlertCircle: typeof import("~icons/lucide/alert-circle")["default"];
15+
LucideMic: typeof import("~icons/lucide/mic")["default"];
16+
LucideMicOff: typeof import("~icons/lucide/mic-off")["default"];
17+
LucidePhoneOff: typeof import("~icons/lucide/phone-off")["default"];
18+
LucidePlus: typeof import("~icons/lucide/plus")["default"];
19+
LucideVideo: typeof import("~icons/lucide/video")["default"];
20+
LucideVideoOff: typeof import("~icons/lucide/video-off")["default"];
21+
RouterLink: typeof import("vue-router")["RouterLink"];
22+
RouterView: typeof import("vue-router")["RouterView"];
23+
SFUDashboard: typeof import("./src/components/SFUDashboard.vue")["default"];
24+
VideoPreview: typeof import("./src/components/VideoPreview.vue")["default"];
25+
}
2426
}

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview",
1010
"lint": "biome check --write .",
1111
"format": "biome check --fix .",
12-
"copy-html-entry": "cp ../sae/public/frontend/index.html ../sae/www/frontend.html"
12+
"copy-html-entry": "cp ../sae/public/frontend/index.html ../sae/www/sae.html"
1313
},
1414
"dependencies": {
1515
"feather-icons": "^4.29.2",

frontend/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default defineConfig({
1111
jinjaBootData: true,
1212
lucideIcons: true,
1313
buildConfig: {
14-
indexHtmlPath: "../sae/www/frontend.html",
14+
indexHtmlPath: "../sae/www/sae.html",
1515
emptyOutDir: true,
1616
sourcemap: true,
1717
},

0 commit comments

Comments
 (0)