10 lines
276 B
JavaScript
10 lines
276 B
JavaScript
export default class Builder {
|
|
routerConfig = {};
|
|
|
|
constructor(moduleContext) {
|
|
this.moduleContext = moduleContext;
|
|
this.routerPrefix =
|
|
(moduleContext.getRouterPrefix().startsWith('/') ? '' : '/') + moduleContext.getRouterPrefix();
|
|
}
|
|
}
|