Only posting here in the Elixir channel because there is not a Mix channel.... In either case, I am wondering if Laravel Mix is running through autoprefixer like Laravel Elixir was? I was able to modify the autoprefixer settings in Elixir by adding a configuration change in my gulpfile. I don't see anything in the Laravel Mix repo. I don't know much about webpack so hoping someone can answer this question. Thanks in advance!
@aviattor@codenex You are mistaken my friend. It works as posted above with `npm run dev' and all the other options. Just read the code if you want more proof.
Nah, if you just simply put that sample code at the end of you app.scss and run "npm run dev", you open up public/css/app.css and see the code prefixed. Just a simple test so you can see how it works. Line 100 in the default webpack.config.js uses it through postcss when processing.
@JohnnyW2001 if you look at line 360 of the default webpack.config.js it loads a variable "Mix.options.postCss" which is stored in the Options.js. The value of that is:
postCss: [
require('autoprefixer')
],