refactor: remove Jitsi Meet related configurations and server action definitions, and eliminate redundant Dockerfile copy.

This commit is contained in:
2025-11-27 09:05:20 -03:00
parent 0c0c7a29c0
commit 277dc616b3
3 changed files with 0 additions and 11 deletions

View File

@@ -21,9 +21,6 @@ RUN bun install
# Build the project
COPY --from=prepare /app/out/full/ .
# Copy the rest of the source code
COPY --from=prepare /app/out/full/ .
ARG PUBLIC_CONVEX_URL
ENV PUBLIC_CONVEX_URL=$PUBLIC_CONVEX_URL

View File

@@ -7,10 +7,4 @@ export default defineConfig({
resolve: {
dedupe: ["lucide-svelte"],
},
optimizeDeps: {
exclude: ["lib-jitsi-meet"], // Excluir para permitir carregamento dinâmico no browser
},
ssr: {
noExternal: [], // lib-jitsi-meet não funciona no SSR, deve ser carregada apenas no browser
},
});

View File

@@ -9,7 +9,6 @@
*/
import type * as actions_email from "../actions/email.js";
import type * as actions_jitsiServer from "../actions/jitsiServer.js";
import type * as actions_linkPreview from "../actions/linkPreview.js";
import type * as actions_pushNotifications from "../actions/pushNotifications.js";
import type * as actions_smtp from "../actions/smtp.js";
@@ -69,7 +68,6 @@ import type {
declare const fullApi: ApiFromModules<{
"actions/email": typeof actions_email;
"actions/jitsiServer": typeof actions_jitsiServer;
"actions/linkPreview": typeof actions_linkPreview;
"actions/pushNotifications": typeof actions_pushNotifications;
"actions/smtp": typeof actions_smtp;