Add dev config to netlify
This somehow fixed it? I do not understand how Netlify works
This commit is contained in:
parent
1b32a5a600
commit
f4845de588
2 changed files with 4 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -16,3 +16,4 @@ node_modules/
|
||||||
|
|
||||||
# Backend
|
# Backend
|
||||||
.vercel/
|
.vercel/
|
||||||
|
.netlify
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
[build]
|
[build]
|
||||||
command = "pnpm run build"
|
command = "pnpm run build"
|
||||||
publish = "dist"
|
publish = "dist"
|
||||||
|
[dev]
|
||||||
|
command = "pnpm dev"
|
||||||
|
targetPort = 4321
|
||||||
|
|
Reference in a new issue