0

ember cli を使用する場合、これを実行しようとしましたが、ファイルが dist にコピーされません:

app.import('bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot', {
  destDir: 'fonts'
});

したがって、ember サーバーを実行すると、次のようになります。

version: 0.1.15
Could not find watchman, falling back to NodeWatcher for file system events
Build failed.
Path or pattern "glyphicons-halflings-regular.eot" did not match any files
Error: Path or pattern "glyphicons-halflings-regular.eot" did not match any files

私は何を間違っていますか?

4

1 に答える 1

0

glyphicons-halflings-regular.eot が bower_components フォルダーの下にあることを再確認してください。

それでも問題が解決しない場合は、ember-cli とブートストラップを最新バージョンに更新すると役立つ場合があります

npm update ember-cli
bower update bootstrap
于 2015-03-14T07:22:41.690 に答える