Merge pull request #3322 from lohxt1/fix/next-js-app-build-output-command

fix: bruno-app build command update
This commit is contained in:
lohit 2024-10-17 18:36:43 +05:30 committed by GitHub
commit ac67c4c0d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
module.exports = { module.exports = {
output: 'export',
reactStrictMode: false, reactStrictMode: false,
publicRuntimeConfig: { publicRuntimeConfig: {
CI: process.env.CI, CI: process.env.CI,

View File

@ -4,7 +4,7 @@
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "cross-env ENV=dev next dev -p 3000", "dev": "cross-env ENV=dev next dev -p 3000",
"build": "next build && next export", "build": "next build",
"start": "next start", "start": "next start",
"lint": "next lint", "lint": "next lint",
"test": "jest", "test": "jest",