如何在Google App Engine上的bower_components文件夹下提供字体文件?

时间:2015-10-22 19:50:41

标签: google-app-engine

使用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*$

404 errors

0 个答案:

没有答案