Move .babelrc to babel.config.json

This commit is contained in:
Sonny Bakker 2024-08-24 16:38:53 +02:00
parent 3152c8f14e
commit c7aa431e4a
4 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ FROM node:lts AS frontend-build
WORKDIR /app
COPY ./*.json ./*.js ./.babelrc /app/
COPY ./*.json ./*.js ./babel.config.json /app/
RUN npm ci

View file

@ -3,7 +3,7 @@ FROM node:lts
WORKDIR /app
RUN mkdir /app/src
COPY package*.json webpack.*.js .babelrc /app/
COPY package*.json webpack.*.js babel.config.json /app/
RUN npm install