diff --git a/zefie_wtvp_minisrv/packer.js b/zefie_wtvp_minisrv/packer.js index 8b99a2ee..f2d8053c 100644 --- a/zefie_wtvp_minisrv/packer.js +++ b/zefie_wtvp_minisrv/packer.js @@ -1,3 +1,6 @@ +'use strict'; +const path = require('path'); +var classPath = path.resolve(__dirname + path.sep + "includes" + path.sep + "classes" + path.sep) + path.sep; require(classPath + "Prototypes.js"); const { WTVShared } = require(classPath + "/WTVShared.js"); var wtvshared = new WTVShared(null, true); const fs = require('fs'); @@ -49,4 +52,4 @@ if (process.argv) { } } else { showUsage(); -} \ No newline at end of file +}