wrong fallback for configScript used

This commit is contained in:
David Reed 2022-11-23 12:58:18 -05:00
parent 71e7a4e48f
commit dda683aa68
No known key found for this signature in database
GPG key ID: 2211691D8A1EE72F

View file

@ -53,7 +53,7 @@ class Ultraviolet {
this.meta.origin ||= '';
this.bundleScript = options.bundleScript || '/uv.bundle.js';
this.handlerScript = options.handlerScript || '/uv.handler.js';
this.configScript = options.handlerScript || '/uv.config.js';
this.configScript = options.configScript || '/uv.config.js';
this.meta.url ||= this.meta.base || '';
this.codec = Ultraviolet.codec;
this.html = new HTML(this);