5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LaravelMixでAutoprefixerを設定する

Posted at

Laravelでgridレイアウトが使いたかったのですが、IE対応したかったのでLaravelMixにautoprefixerを入れました。

webpack.mix.js
mix.sass('source.scss', 'output.css')
    .options({
        autoprefixer: {
        options: {
          grid: true, // gridレイアウトが使えるようにする。対象ブラウザは .browserslistrc
        },
      },
    });
.browerslistrc
ie 11
Firefox > 50

.browerslistrcの書き方はこちら https://qiita.com/takeshisakuma/items/0bc1c39ee976bd1f52d7

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?