Modificar package.json

This commit is contained in:
Bxio 2025-07-04 13:27:03 +00:00
parent 618e769dbb
commit 37313af8e2
2 changed files with 7 additions and 14 deletions

View File

@ -1,14 +0,0 @@
server {
listen 3000;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
error_page 404 /index.html;
}

7
package.json Normal file
View File

@ -0,0 +1,7 @@
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
}
}