Skip to content

Commit 0de51a0

Browse files
committed
Fix build.
1 parent 0acee80 commit 0de51a0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ COPY tasks/app/example-website/build /app/tasks/app/example-website/
7474
RUN make app:example-website:build && make clean:dev
7575

7676
COPY src/api-umbrella/web-app/assets /app/src/api-umbrella/web-app/assets
77-
COPY src/api-umbrella/web-app/webpack.config.js /app/src/api-umbrella/web-app/webpack.config.js
77+
COPY src/api-umbrella/web-app/package.json /app/src/api-umbrella/web-app/package.json
78+
COPY src/api-umbrella/web-app/vite.config.js /app/src/api-umbrella/web-app/vite.config.js
7879
COPY tasks/app/web-app/precompile /app/tasks/app/web-app/
7980
RUN make app:web-app:precompile && make clean:dev
8081

Taskfile.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,8 @@ tasks:
290290
sources:
291291
- ./build/work/stamp/app-deps/web-app/pnpm
292292
- ./src/api-umbrella/web-app/assets/**/*.scss
293-
- ./src/api-umbrella/web-app/webpack.config.js
293+
- ./src/api-umbrella/web-app/package.json
294+
- ./src/api-umbrella/web-app/vite.config.js
294295
- ./tasks/app/web-app/precompile
295296
- ./tasks/helpers.sh
296297
generates:

0 commit comments

Comments
 (0)