vue deployed to now successfully

This commit is contained in:
Brandon Flowers 2019-01-22 20:51:47 -05:00
parent ee57a7cd65
commit daa847f527
3 changed files with 28 additions and 1 deletions

View file

@ -2,6 +2,20 @@
We are using are VueJS as a build tool to help create a modular version of the Fantasy Map Generator so that individual contributors can work with more manageable files.
## Getting Started
```
yarn
yarn serve
```
## Production
```
yarn build
```
## Goal
We could divide and conquer in steps.

View file

@ -5,7 +5,9 @@
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
"lint": "vue-cli-service lint",
"start": "vue-cli-service serve",
"dev": "node build/dev-server.js"
},
"dependencies": {
"vue": "^2.5.17"

11
vue/vue.config.js Normal file
View file

@ -0,0 +1,11 @@
module.exports = {
// options...
devServer: {
compress: true,
inline: true,
port: '8080',
allowedHosts: [
'.now.sh'
]
}
}