forked from ruuvi/ruuvitracker_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
49 lines (45 loc) · 1.35 KB
/
config.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require.config({
baseUrl: '.'
, hbs: {
disableI18n: true
}
, shim: {
'underscore': {
exports: '_'
}
, 'jquery': {
exports: '$'
}
, 'backbone': {
deps: ['underscore', 'jquery']
, exports: 'Backbone'
}
, 'bb-relational': {
deps: ['backbone']
, exports: 'Backbone.Relational'
}
, 'leaflet': {
exports: 'L'
}
}
, paths: {
'jquery': 'vendor/jquery-1.7.2.min'
, 'Handlebars': 'vendor/requirejs-handlebars/Handlebars'
, 'hbs': 'vendor/requirejs-handlebars/hbs'
, 'underscore': 'vendor/underscore/underscore-min'
, 'backbone' : 'vendor/backbone/backbone-min'
, 'domReady': 'vendor/requirejs/domReady'
, 'json2': 'vendor/json2'
, 'tmpl': 'vendor/tmpl'
, 'leaflet': 'vendor/leaflet/dist/leaflet'
, 'bb-relational': 'vendor/Backbone-relational/backbone-relational'
, 'application': 'vendor/opa/application'
, 'activity': 'vendor/opa/activity'
, 'service': 'vendor/opa/service'
, 'intent': 'vendor/opa/intent'
, 'component': 'vendor/opa/component'
, 'region': 'vendor/opa/region'
, 'store': 'vendor/opa/store'
}
});
define(function() {return true;});