* feat: resolve TODO by removing quiet option * feat: exclude ./src/mocks from production build * feat: load only msw when running through vite * feat: optimise load order * feat: handles mocked logos with virtual path * feat: loads mocked service worker from virtual path * feat: loads assets from virtual path * feat: forces MSW=on for the static build * build: adds storybook workflow copied over from the old backoffice repository * build: limits where the build runs * build: adds workflow to build a static version of the backoffice upon request * build: excludes the `/umbraco/backoffice/assets` folder from navigation fallback just in case * build: triggers run when the workflow file itself changes * build: triggers run when package.json changes * build: marks the 'contrib' branch as production * build: activates static builds on preview/* labels * build: bumps github checkout version * build: updates key for backoffice web app * build: updates key for storybook * build: disables build for release branches to preseve on preview environments
35 lines
972 B
TypeScript
35 lines
972 B
TypeScript
import { startMockServiceWorker } from './src/mocks/index.js';
|
|
import { UmbAppElement } from '@umbraco-cms/backoffice/app';
|
|
import { umbExtensionsRegistry } from '@umbraco-cms/backoffice/extension-registry';
|
|
|
|
const appElement = new UmbAppElement();
|
|
appElement.backofficePath = '/';
|
|
|
|
//#region Vite Mock Setup
|
|
if (import.meta.env.VITE_UMBRACO_USE_MSW === 'on') {
|
|
appElement.bypassAuth = true;
|
|
startMockServiceWorker();
|
|
} else {
|
|
appElement.serverUrl = import.meta.env.VITE_UMBRACO_API_URL;
|
|
}
|
|
|
|
// Example injector:
|
|
if (import.meta.env.VITE_EXAMPLE_PATH) {
|
|
import(/* @vite-ignore */ './' + import.meta.env.VITE_EXAMPLE_PATH + '/index.ts').then((js) => {
|
|
if (js) {
|
|
Object.keys(js).forEach((key) => {
|
|
const value = js[key];
|
|
|
|
if (Array.isArray(value)) {
|
|
umbExtensionsRegistry.registerMany(value);
|
|
} else if (typeof value === 'object') {
|
|
umbExtensionsRegistry.register(value);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
//#endregion
|
|
|
|
document.body.append(appElement);
|