DEXTUploadX5Plugin Properties
authKey
dextuploadx5-vue 0.0.1 or later
Type
String
-
Description
The DEXTUploadX5 product authentication key string.
DEXTUploadX5Plugin sets this value as dextuploadx5Configuration.authkey so the product script can initialize.
This value is required. If it is missing, the loader throws an error and does not load the product.
Example
app.use(DEXTUploadX5Plugin, { authKey: config.authKey });
productPath
dextuploadx5-vue 0.0.1 or later
Type
String
-
Description
The base path from which the browser loads the DEXTUploadX5 product files.
dextuploadx5.js is loaded relative to this path, and a trailing slash is automatically added internally when it is missing.
If omitted, the default value is /dx5/.
If this path does not match the actual static file location, the product will not load.
Example
app.use(DEXTUploadX5Plugin, { authKey: authKey, productPath: "/public/dx5/" });