fix: attempt to fix Dockerfile front build (#5020)

This commit is contained in:
Thaïs
2024-04-18 11:24:39 +02:00
committed by GitHub
parent 86afc34e61
commit 7065495223
4 changed files with 12 additions and 12 deletions

View File

@ -4,11 +4,11 @@
"private": true,
"type": "module",
"scripts": {
"build": "npx nx exec -- vite build && sh ./scripts/inject-runtime-env.sh",
"build": "npx vite build && sh ./scripts/inject-runtime-env.sh",
"build:sourcemaps": "VITE_BUILD_SOURCEMAP=true NODE_OPTIONS=--max-old-space-size=3000 npx nx build",
"start:prod": "NODE_ENV=production npx nx exec -- vite --host",
"storybook:build": "npx nx exec -- storybook build",
"tsup": "npx nx exec -- tsup"
"start:prod": "NODE_ENV=production npx vite --host",
"storybook:build": "npx storybook build",
"tsup": "npx tsup"
},
"engines": {
"node": "^18.17.1",