fix: vuetify not transpiled for MS Edge (#994)
This commit is contained in:
parent
06c2e6e88c
commit
a41ca694be
2
.babelrc
2
.babelrc
@ -31,7 +31,7 @@
|
||||
"@babel/preset-env", {
|
||||
"useBuiltIns": "entry",
|
||||
"corejs": 3,
|
||||
"debug": true
|
||||
"debug": false
|
||||
}
|
||||
]
|
||||
]
|
||||
|
@ -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',
|
||||
|
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user