File tree Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "projects": {
3+ "default": "onetaskapp"
4+ }
5+ }
Original file line number Diff line number Diff line change 11# One-Task
22
33> Vue.js app featuring a task manager with chatbot installed to assist with each task. !!Currently under heavy development!!
4+ > Deployed in https://onetaskapp.firebaseapp.com
45
56## Build Setup
67
Original file line number Diff line number Diff line change 1+ {
2+ "hosting" : {
3+ "public" : " dist" ,
4+ "rewrites" : [
5+ {
6+ "source" : " **" ,
7+ "destination" : " /index.html"
8+ }
9+ ]
10+ }
11+ }
Original file line number Diff line number Diff line change 11var axios = require ( 'axios' ) ;
22axios . defaults . withCredentials = true ; //used to send cookies tokens in request headers
3- var nodeurl = process . env . NODE_URI || 'http://localhost:3000' ;
3+ var nodeurl = 'https://onetasknode.herokuapp.com' ; // process.env.NODE_URI || 'http://localhost:3000';
44
55import api from '../utils/api'
66
You can’t perform that action at this time.
0 commit comments