Skip to content

Commit

Permalink
fix: Front-end development mode build
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Jan 15, 2025
1 parent f110a2b commit 236ff30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"dev": "export NODE_ENV=development; vite --mode development build",
"watch": "export NODE_ENV=development; vite --mode development build --watch",
"lint": "eslint cypress src",
"lint:fix": "eslint cypress src --fix",
"stylelint": "stylelint src",
Expand Down Expand Up @@ -91,4 +91,4 @@
"typescript": "^5.7.3",
"vite": "^5.4.11"
}
}
}

0 comments on commit 236ff30

Please sign in to comment.