mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
17 lines
289 B
JavaScript
17 lines
289 B
JavaScript
require.config({
|
|
urlArgs: 'v=' + window.NzbDrone.Version
|
|
});
|
|
|
|
if (window.location.hostname.toLowerCase() !== 'localhost') {
|
|
require.config({
|
|
waitSeconds: 30
|
|
});
|
|
}
|
|
|
|
define(
|
|
[
|
|
'app'
|
|
], function (app) {
|
|
'use strict';
|
|
app.start();
|
|
}); |