Users are experiencing issues with custom icons not displaying correctly when deploying on their own machines. It would be beneficial to ensure that custom icons are supported and function as expected in local deployments.
Icon didn't shows up when I deploy on my machine but works perfectly on your enviroment. For reference I used this dockerfile ``` # Stage 1: build the application FROM node:18-alpine AS builder # Set working directory WORKDIR /app # Copy package manifests COPY package.json yarn.lock ./ # Install dependencies (here using npm; change to `yarn install` if you prefer yarn) RUN npm install # Copy the rest of the application code COPY . . # Build the Nuxt 3 project RUN npm run build # Stage 2: production image FROM node:18-alpine AS runner WORKDIR /app # Copy built output and necessary configuration COPY --from=builder /app/.output ./ # Expose the port the app uses EXPOSE 3000 # Default command to start the production server CMD ["node", "server/index.mjs"] ```