Initial commit

This commit is contained in:
Oliver 2021-11-29 17:04:26 -06:00
commit 9212949716
27 changed files with 24369 additions and 0 deletions

8
vue.config.js Normal file
View file

@ -0,0 +1,8 @@
module.exports = {
publicPath: process.env.NODE_ENV === `production`
? `/`
: `/`,
devServer: {
disableHostCheck: false, // set this to true to allow ngrok web serving
},
}