LoginSignup
5
3

More than 3 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
        },
      },
    });
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