Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,11 @@ COPY frontend/services /app/frontend/services/
COPY frontend/styles /app/frontend/styles/
COPY frontend/types /app/frontend/types/
COPY frontend/utils /app/frontend/utils/
# Install frontend dependencies
RUN cd /app/frontend && pnpm install --frozen-lockfile


# Build frontend for production
RUN cd /app/frontend && NODE_ENV=production pnpm run build
# Build frontend for production
RUN cd /app/frontend && NODE_ENV=production pnpm run build

Expand Down
2 changes: 1 addition & 1 deletion frontend/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ body {

.user-message-markdown,
.assistant-message-markdown {
@apply w-full overflow-wrap-break-word; /* Added overflow-wrap */
@apply w-full break-words; /* Added overflow-wrap */
}

/* Apply styles to markdown elements directly */
Expand Down