Skip to content

Commit

Permalink
🍱chore: update start command
Browse files Browse the repository at this point in the history
  • Loading branch information
blinko-space committed Oct 27, 2024
1 parent f3e0f8e commit 0e2c7fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
}
return config;
},
outputFileTracing: false,
outputFileTracing: true,
reactStrictMode: true,
swcMinify:false,
eslint: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"db-reset": "prisma migrate dev reset",
"dev": "next dev -p 1111",
"build": "set NODE_ENV=production & next build",
"start": "next start -p 1111",
"start": "prisma migrate & prisma db seed & next start -p 1111",
"lint": "next lint",
"analyze": "ANALYZE=true next build",
"postinstall": "pnpm generate"
Expand Down

0 comments on commit 0e2c7fc

Please sign in to comment.