3

Laravel 5 と Elixir を使用しています。

app.scssどのインポート_bootstrap.csss(bower によってインストール) があり、これらのファイルは 1 つのファイルにコンパイルされますpublic/css/app.css

また、他の依存関係 (bower によってインストールされた) にいくつかの CSS ファイルがあり、それらを に追加したいと考えていpublic/css/app.cssます。

どうすればいいですか?

4

2 に答える 2

1

First you'll need to rename your .css file as a .scss file, then you can import the new .scss file into the app.scss file using the same method _bootstrap.scss is imported.

@import "path/to/css/file.scss";
于 2015-01-04T20:05:52.427 に答える