Files
test/web_enterprise/static/src/main.js
2023-04-14 17:42:23 +08:00

13 lines
357 B
JavaScript

/** @odoo-module **/
import { startWebClient } from "@web/start";
import { WebClientEnterprise } from "./webclient/webclient";
/**
* This file starts the enterprise webclient. In the manifest, it replaces
* the community main.js to load a different webclient class
* (WebClientEnterprise instead of WebClient)
*/
startWebClient(WebClientEnterprise);