14 lines
201 B
JavaScript
14 lines
201 B
JavaScript
/**
|
|
* Init
|
|
*/
|
|
|
|
define(["jquery"], function($) {
|
|
|
|
"use strict";
|
|
|
|
var Config = {
|
|
baseUrl: "http://localhost/exodus4d/pathfinder/" // TODO: change baseURL
|
|
};
|
|
|
|
return Config;
|
|
}); |