Update Netlify settings

This commit is contained in:
Henk Verlinde 2024-04-19 21:02:31 +02:00 committed by Simon C
parent a70676d5b8
commit 1391225827
1 changed files with 5 additions and 5 deletions

View File

@ -7,23 +7,23 @@
NPM_VERSION = "10.2.4"
[context.production]
command = "pnpm build"
command = "npm run build"
[context.deploy-preview]
command = "pnpm build -- -b $DEPLOY_PRIME_URL"
command = "npm run build -- -b $DEPLOY_PRIME_URL"
[context.branch-deploy]
command = "pnpm build -- -b $DEPLOY_PRIME_URL"
command = "npm run build -- -b $DEPLOY_PRIME_URL"
[context.next]
command = "pnpm build"
command = "npm run build"
[context.next.environment]
HUGO_ENV = "next"
[dev]
framework = "#custom"
command = "pnpm dev"
command = "npm run dev"
targetPort = 1313
port = 8888
publish = "public"