Update Netlify settings
This commit is contained in:
parent
a70676d5b8
commit
1391225827
10
netlify.toml
10
netlify.toml
|
@ -7,23 +7,23 @@
|
||||||
NPM_VERSION = "10.2.4"
|
NPM_VERSION = "10.2.4"
|
||||||
|
|
||||||
[context.production]
|
[context.production]
|
||||||
command = "pnpm build"
|
command = "npm run build"
|
||||||
|
|
||||||
[context.deploy-preview]
|
[context.deploy-preview]
|
||||||
command = "pnpm build -- -b $DEPLOY_PRIME_URL"
|
command = "npm run build -- -b $DEPLOY_PRIME_URL"
|
||||||
|
|
||||||
[context.branch-deploy]
|
[context.branch-deploy]
|
||||||
command = "pnpm build -- -b $DEPLOY_PRIME_URL"
|
command = "npm run build -- -b $DEPLOY_PRIME_URL"
|
||||||
|
|
||||||
[context.next]
|
[context.next]
|
||||||
command = "pnpm build"
|
command = "npm run build"
|
||||||
|
|
||||||
[context.next.environment]
|
[context.next.environment]
|
||||||
HUGO_ENV = "next"
|
HUGO_ENV = "next"
|
||||||
|
|
||||||
[dev]
|
[dev]
|
||||||
framework = "#custom"
|
framework = "#custom"
|
||||||
command = "pnpm dev"
|
command = "npm run dev"
|
||||||
targetPort = 1313
|
targetPort = 1313
|
||||||
port = 8888
|
port = 8888
|
||||||
publish = "public"
|
publish = "public"
|
||||||
|
|
Loading…
Reference in New Issue