We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bfc2c9 commit 9751d03Copy full SHA for 9751d03
1 file changed
build.sh
@@ -67,12 +67,12 @@ cp docs.json website-docs/docs/docs.json
67
# Run the start command for development environment. <https://www.gatsbyjs.com/docs/reference/gatsby-cli/#develop>
68
if [ "$CMD" == "start" ]; then
69
mkdir -p website-docs/.cache
70
- (cd website-docs && pnpm install --no-frozen-lockfile && pnpm start)
+ (cd website-docs && pnpm install --frozen-lockfile && pnpm start)
71
fi
72
73
# Run the build command for production environment. <https://www.gatsbyjs.com/docs/reference/gatsby-cli/#build>
74
if [ "$CMD" == "build" ]; then
75
replace_image_path
76
- (cd website-docs && pnpm install --no-frozen-lockfile && pnpm build)
+ (cd website-docs && pnpm install --frozen-lockfile && pnpm build)
77
move_images
78
0 commit comments