update supported browsers

This commit is contained in:
Marcos Moura 2017-02-07 21:18:19 -02:00
parent cae50ab0c9
commit a5f7edb58d
5 changed files with 9 additions and 9 deletions

View file

@ -7,7 +7,7 @@
"env",
{
"targets": {
"browsers": ["last 3 versions"]
"browsers": ["last 3 versions", "not IE < 11"]
}
}
]

View file

@ -15,7 +15,7 @@ export default {
path: config.rootPath,
publicPath: config.publicPath,
filename: '[name].js',
hotUpdateChunkFilename: '[name].[chunkhash:8].hot-update.js',
hotUpdateChunkFilename: '[name].[hash:8].hot-update.js',
hotUpdateMainFilename: '[name].hot-update.js'
},
resolve: {

View file

@ -36,7 +36,7 @@ const conf = merge(baseConfig, {
},
postcss: [
autoprefixer({
browsers: ['last 3 versions']
browsers: ['last 3 versions', 'not IE < 11']
})
]
}

View file

@ -53,7 +53,7 @@ export default merge(baseConfig, {
},
postcss: [
autoprefixer({
browsers: ['last 3 versions']
browsers: ['last 3 versions', 'not IE < 11']
})
]
}

View file

@ -22,12 +22,12 @@
<p>Vue Material supports the latest version of all Browsers. This means:</p>
<ul>
<li>Google Chrome 50+</li>
<li>Firefox 48+</li>
<li>Safari 9+</li>
<li>Opera 40+</li>
<li>Google Chrome 52+</li>
<li>Firefox 48+ </li>
<li>Safari 9+ </li>
<li>Opera 38+ </li>
<li>Edge 12+ </li>
<li>IE 11</li>
<li>Edge</li>
</ul>
</section>