correct config properties
This commit is contained in:
parent
dda683aa68
commit
6cb068740f
1 changed files with 3 additions and 3 deletions
|
|
@ -51,9 +51,9 @@ class Ultraviolet {
|
||||||
this.meta = options.meta || {};
|
this.meta = options.meta || {};
|
||||||
this.meta.base ||= undefined;
|
this.meta.base ||= undefined;
|
||||||
this.meta.origin ||= '';
|
this.meta.origin ||= '';
|
||||||
this.bundleScript = options.bundleScript || '/uv.bundle.js';
|
this.bundleScript = options.bundle || '/uv.bundle.js';
|
||||||
this.handlerScript = options.handlerScript || '/uv.handler.js';
|
this.handlerScript = options.handler || '/uv.handler.js';
|
||||||
this.configScript = options.configScript || '/uv.config.js';
|
this.configScript = options.config || '/uv.config.js';
|
||||||
this.meta.url ||= this.meta.base || '';
|
this.meta.url ||= this.meta.base || '';
|
||||||
this.codec = Ultraviolet.codec;
|
this.codec = Ultraviolet.codec;
|
||||||
this.html = new HTML(this);
|
this.html = new HTML(this);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue