Skip to content

Commit 5b372fe

Browse files
committed
update supported browsers
1 parent 911125b commit 5b372fe

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"env",
88
{
99
"targets": {
10-
"browsers": ["last 3 versions"]
10+
"browsers": ["last 3 versions", "not IE < 11"]
1111
}
1212
}
1313
]

build/webpack/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default {
1515
path: config.rootPath,
1616
publicPath: config.publicPath,
1717
filename: '[name].js',
18-
hotUpdateChunkFilename: '[name].[chunkhash:8].hot-update.js',
18+
hotUpdateChunkFilename: '[name].[hash:8].hot-update.js',
1919
hotUpdateMainFilename: '[name].hot-update.js'
2020
},
2121
resolve: {

build/webpack/prod-docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const conf = merge(baseConfig, {
3636
},
3737
postcss: [
3838
autoprefixer({
39-
browsers: ['last 3 versions']
39+
browsers: ['last 3 versions', 'not IE < 11']
4040
})
4141
]
4242
}

build/webpack/prod-lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default merge(baseConfig, {
5353
},
5454
postcss: [
5555
autoprefixer({
56-
browsers: ['last 3 versions']
56+
browsers: ['last 3 versions', 'not IE < 11']
5757
})
5858
]
5959
}

docs/src/pages/About.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222

2323
<p>Vue Material supports the latest version of all Browsers. This means:</p>
2424
<ul>
25-
<li>Google Chrome 50+</li>
26-
<li>Firefox 48+</li>
27-
<li>Safari 9+</li>
28-
<li>Opera 40+</li>
25+
<li>Google Chrome 52+</li>
26+
<li>Firefox 48+ </li>
27+
<li>Safari 9+ </li>
28+
<li>Opera 38+ </li>
29+
<li>Edge 12+ </li>
2930
<li>IE 11</li>
30-
<li>Edge</li>
3131
</ul>
3232
</section>
3333

0 commit comments

Comments
 (0)