i have two env
files in my vue js project
- .env.development
- .env.production
i want to build the project with command npm run build --mode development
or npm run build --mode production
for build based on my env files based on vue docs.
and i get this error
Entry module not found: Error: Can't resolve '/var/www/html/projectname/production' in '/var/www/html/projectname'
what is the solution??