Skip to content
This repository was archived by the owner on Jun 12, 2019. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8c116fa

Browse files
committedNov 19, 2018
added missing files
1 parent 6962dad commit 8c116fa

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed
 

‎babel.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module.exports = {
22
presets: [
3-
'@vue/app'
3+
['@vue/app', {
4+
'userBuiltIns': 'entry'
5+
}]
46
]
57
}

‎src/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// import '@babel/polyfill
12
import Vue from 'vue'
23
import App from './App.vue'
34

‎vue.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const ansiRegex = require('ansi-regex')
2+
3+
module.exports = {
4+
baseUrl: '/',
5+
transpileDependencies: [ansiRegex]
6+
}

0 commit comments

Comments
 (0)
This repository has been archived.