我有一个Nuxt应用程序,它从本地的API获取数据。像这样通过Travis CI将应用程序部署到Github页面:
language: 'node_js'
node_js: '8'
before_script:
- npm run lint
- npm run generate
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
local_dir: dist
repo: repo_name
target_branch: gh-pages
on:
branch: master
为了在生成应用程序时获取静态数据,我使用fetch
方法,但是由于我的API当前尚未部署(因此只能在本地访问),因此我不知道如何获取数据Travis CI / CD流程。
必须我:
或者还有其他方法吗?