Anyone else not come across this?
Mar 8, 2019
11
Level 24
Bootstrap 4 scss with autoprefixer missing -ms-flex-wrap
I have a new project using bootstrap 4 scss. I have autoprefixer running in my webpack.mix.js:
mix.react("resources/js/app.js", "public/js")
.sass("resources/sass/app.scss", "public/css")
.options({
postCss: [
require("autoprefixer")({
browsers: [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
})
]
});
It is prefixing -ms-flexbox but I still have a broken layout. When I compare it to the cdn version of bootstrap .css I notice that -ms-flex-wrap is missing from my compiled version but it is in their cdn version. Any ideas how to get mine to compile the same?
Please or to participate in this conversation.