9 lines
410 B
JavaScript
9 lines
410 B
JavaScript
// SPDX-FileCopyrightText: 2023 XWiki CryptPad Team <contact@cryptpad.org> and contributors
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
// Stage 0, this gets cached which means we can't change it. boot2.js is changable.
|
|
define(['/api/config?cb=' + (+new Date()).toString(16)], function (Config) {
|
|
if (Config.requireConf) { require.config(Config.requireConf); }
|
|
require(['/common/boot2.js']);
|
|
});
|