Skip to content

Commit

Permalink
fix: vuetify not transpiled for MS Edge (requarks#994)
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel committed Aug 30, 2019
1 parent 06c2e6e commit a41ca69
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@babel/preset-env", {
"useBuiltIns": "entry",
"corejs": 3,
"debug": true
"debug": false
}
]
]
Expand Down
4 changes: 3 additions & 1 deletion dev/webpack/webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ module.exports = {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
exclude: (modulePath) => {
return modulePath.includes('node_modules') && !modulePath.includes('vuetify')
},
use: [
{
loader: 'cache-loader',
Expand Down
4 changes: 3 additions & 1 deletion dev/webpack/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ module.exports = {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
exclude: (modulePath) => {
return modulePath.includes('node_modules') && !modulePath.includes('vuetify')
},
use: [
{
loader: 'cache-loader',
Expand Down

0 comments on commit a41ca69

Please sign in to comment.