@quick-game/cli
Version:
Command line interface for rapid qg development
17 lines • 646 B
JavaScript
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as ThemeSupport from '../../legacy/theme_support/theme_support.js';
/**
* Houses any setup required to run the component docs server. Currently this is
* only populating the runtime CSS cache but may be extended in the future.
*/
export async function setup() {
const setting = {
get() {
return 'default';
},
};
ThemeSupport.ThemeSupport.instance({ forceNew: true, setting });
}
//# sourceMappingURL=component-server-setup.js.map