fix: force clean build assets and update icon

This commit is contained in:
Rodrigo Borba 2026-01-04 23:39:24 -03:00
parent bc45591cf3
commit 6aa9b6ba2a
2 changed files with 2 additions and 1 deletions

View File

@ -166,7 +166,7 @@ const toggleCrmInsights = () => {
/>
<Button
v-tooltip.top="t('CONVERSATION.CRM_INSIGHTS.TOGGLE')"
icon="i-lucide-brain"
icon="i-lucide-lightbulb"
class="bg-green-50 text-green-600 hover:bg-green-100 dark:bg-green-900/20 dark:text-green-400 border border-green-200 dark:border-green-800 !p-2 !h-10 !w-10 !text-xl"
:class="{
'ring-2 ring-green-500 ring-offset-1': isCrmInsightsOpen,

View File

@ -132,6 +132,7 @@ RUN apk update && apk add --no-cache \
COPY --from=node /usr/local/bin/node /usr/local/bin/
COPY --from=node /usr/local/lib/node_modules /usr/local/lib/node_modules
RUN rm -rf public/packs public/assets
RUN if [ "$RAILS_ENV" != "production" ]; then \
apk add --no-cache curl \
&& ln -s /usr/local/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm \