使用Yeoman
webapp生成器,我可以在本地安装bower_components
并执行grunt
。将应用程序部署到Google App Engine时,我必须添加从/dist
文件夹中提供的所有文件。
应对app.yaml
文件进行哪些更改以提供dist/bower_components
下的字体文件?
我的app.yaml
文件:
version: 1
runtime: php55
api_version: 1
handlers:
- url: /
script: dist/index.html
- url: /styles
static_dir: dist/styles
- url: /scripts
static_dir: dist/scripts
- url: /bower_components/bootstrap-sass/assets/fonts/bootstrap
static_dir: /dist/bower_components/bootstrap-sass/assets/fonts/bootstrap
skip_files:
- ^node_modules*$
- ^bower_components*$