I'm trying to deploy a project to a server, and while looking at examples, I came across this:
{
"name": "new-projet",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development --base-href /projet/",
"test": "ng test",
"deploy": "ng build --configuration production --base-href "/angular_intranet/" --output-path "\\[server]\Users\[utilisateur]\Documents\new-projet\dist""
},
and I wanted to know if the dist directory is important on the production server?

