Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How to deploy Vue.js app?
Home
VueJS
How to deploy Vue.js app?
asked
Jan 9, 2020
in
VueJS
by
GeorgeBell
How to deploy Vue.js app?
#vue
#vuejs
#vue-installation
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 9, 2020
by
GeorgeBell
If you've created your project like this:
vue init webpack myproject
Now you can run
npm run build
Then copy index.html and /dist/ folder into your website root directory. Done.
...