Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
a41ca694
Commit
a41ca694
authored
Aug 30, 2019
by
Nick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: vuetify not transpiled for MS Edge (#994)
parent
06c2e6e8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
.babelrc
.babelrc
+1
-1
webpack.dev.js
dev/webpack/webpack.dev.js
+3
-1
webpack.prod.js
dev/webpack/webpack.prod.js
+3
-1
No files found.
.babelrc
View file @
a41ca694
...
...
@@ -31,7 +31,7 @@
"@babel/preset-env", {
"useBuiltIns": "entry",
"corejs": 3,
"debug":
tru
e
"debug":
fals
e
}
]
]
...
...
dev/webpack/webpack.dev.js
View file @
a41ca694
...
...
@@ -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'
,
...
...
dev/webpack/webpack.prod.js
View file @
a41ca694
...
...
@@ -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'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment