2022-08-29 22:05:22 +02:00
|
|
|
export * as Plugins from "./plugins";
|
2022-08-31 04:07:16 +02:00
|
|
|
export * as Webpack from "./webpack";
|
2022-08-29 22:05:22 +02:00
|
|
|
export * as Api from "./api";
|
2022-09-03 17:49:16 +02:00
|
|
|
export { Settings } from "./api/settings";
|
2022-08-29 20:27:47 +02:00
|
|
|
|
2022-08-29 02:25:27 +02:00
|
|
|
import "./utils/patchWebpack";
|
2022-08-29 18:11:44 +02:00
|
|
|
import "./utils/quickCss";
|
2022-08-31 20:47:07 +02:00
|
|
|
import { waitFor } from "./webpack";
|
|
|
|
|
|
|
|
export let Components;
|
|
|
|
|
2022-09-16 22:59:34 +02:00
|
|
|
waitFor("useState", () => setTimeout(() => import("./components").then(mod => Components = mod), 0));
|