mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
chore: do not minify when deploying production site (#12369)
### What does this PR do? * Do not minify when doing a website:build, as this is causing issues with content not appearing correctly. ### Screenshot / video of UI <!-- If this PR is changing UI, please include screenshots or screencasts showing the difference --> N/A ### What issues does this PR fix or reference? <!-- Include any related issues from Podman Desktop repository (or from another issue tracker). --> Closes https://github.com/podman-desktop/podman-desktop/issues/12238 ### How to test this PR? <!-- Please explain steps to verify the functionality, do not forget to provide unit/component tests --> N/A, check site / netlify. Signed-off-by: Charlie Drage <charlie@charliedrage.com>
This commit is contained in:
parent
74e6a23571
commit
f33564e6c9
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@
|
|||
"typecheck:extensions:registries": "tsc --noEmit --project extensions/registries",
|
||||
"typecheck:extensions:kubectl-cli": "tsc --noEmit --project extensions/kubectl-cli",
|
||||
"typecheck": "pnpm run typecheck:main && pnpm run typecheck:preload && pnpm run typecheck:ui && pnpm run typecheck:renderer && pnpm run typecheck:preload-dd-extension && pnpm run typecheck:preload-webview && pnpm run typecheck:extensions && pnpm run typecheck:extension-api",
|
||||
"website:build": "pnpm run storybook:build && cd website && pnpm run docusaurus clear && pnpm run docusaurus build",
|
||||
"website:build": "pnpm run storybook:build && cd website && pnpm run docusaurus clear && pnpm run docusaurus build --no-minify",
|
||||
"website:prod": "pnpm run website:build && cd website/build && pnpm serve",
|
||||
"website:dev": "pnpm run storybook:build && cd website && pnpm run docusaurus start",
|
||||
"website:screenshots": "cd website-argos && pnpm run screenshot",
|
||||
|
|
|
|||
Loading…
Reference in a new issue