0
、私は次のファイルの構造を有する:main.sass
でがぶ飲み+ブートストラップフォント
frontend
├── bower_components
│ └── bootstrap
│ └── dist
│ ├── css
│ │ └── bootstrap.css
│ └── fonts
│ └── glyphicons-halflings-regular.eot
│
├── src
│ ├── style
│ │ └── main.sass
│ └── index.html
│
└── gulpfile.js
を私が直接ブートストラップファイルのインポート:
@import ../../bower_components/bootstrap/dist/css/bootstrap.css
をしかし、それは自動的に
からフォントにリンクを変更します~
../../bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
。
build
├── css
│ └── main.css
├── fonts
| └── glyphicons-halflings-regular.eot
└── index.html
どのように私は正しくglyphicons-halflings-regular.eot
へmain.css
内のリンクを取得するためにすべてを構築する必要があります。
この構造は、私がガルプでビルドした後に取得したいのですか?