I have a .env file in my project
JavaScript
x
4
1
-public
2
-src
3
-.env.development.local
4
package.json
JavaScript
1
10
10
1
{
2
"name": "my-website",
3
"version": "0.1.0",
4
"scripts": {
5
"serve": "vue-cli-service serve",
6
"build": "vue-cli-service build --mode development",
7
"lint": "vue-cli-service lint"
8
}
9
}
10
When I run npm run build
for the first time, it works.
When I run it after that, it shows error:
JavaScript
1
2
1
my-website@0.1.0 build: `vue-cli-service build --mode development`
2
When I dig into the logs
JavaScript
1
3
1
13 verbose stack Error: my-website@0.1.0 build: `vue-cli-service build --mode development`
2
13 verbose stack Exit status 1
3
After I delete the public
folder, it suddenly works
Advertisement
Answer
After I update the outputDir
from public
to build
, it works.
vue.config.js
JavaScript
1
4
1
module.exports = {
2
outputDir : 'build',
3
}
4