Skip to content

Icons missing in custom deployments #11

@DangerBlack

Description

@DangerBlack

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"]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions