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