-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrapper.js
34 lines (31 loc) · 975 Bytes
/
bootstrapper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(function(){
requirejs.config({
baseUrl: "../",
paths:{
"promise":"https://cdnjs.cloudflare.com/ajax/libs/q.js/0.9.2/q",
"vue":"https://unpkg.com/vue/dist/vue",
"vue.router":"https://unpkg.com/vue-router/dist/vue-router",
"text":"https://cdnjs.cloudflare.com/ajax/libs/require-text/2.0.12/text",
"vuetify": "https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify"
},
waitSeconds: 15,
map:{
},
urlArgs: "version=" + Date.now(),
shim: {
promise:{
exports:"Q"
},
"vue": {
exports: "Vue"
},
"vue.router": {
exports: "VueRouter"
}
},
callback:function(){
console.log('All deps loaded in App')
},
deps:["vue","vue.router","promise", "app.vue"]
});
})();