Dockerized Nuxt3 Cannot find module "@vue/reactivity"
I am getting an error 500 on load. I checked my container files and the module exists under node_modules.
This is my Dockerfile:
This is my Dockerfile:
FROM oven/bun
WORKDIR /app
COPY package.json bun.lockb* ./
RUN bun install
COPY . .
RUN bun run build
EXPOSE 3000
CMD ["bun", "run", "dev"]