summaryrefslogtreecommitdiff
path: root/extension/scripts/package.js
diff options
context:
space:
mode:
Diffstat (limited to 'extension/scripts/package.js')
-rw-r--r--extension/scripts/package.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/scripts/package.js b/extension/scripts/package.js
index c55ec42a..26a49fda 100644
--- a/extension/scripts/package.js
+++ b/extension/scripts/package.js
@@ -9,8 +9,8 @@ if (!fs.existsSync("build")) {
}
const command = isPreRelease
- ? "vsce package --out ./build patch --pre-release"
- : "vsce package --out ./build patch";
+ ? "vsce package --out ./build patch --pre-release --baseContentUrl https://localhost/"
+ : "vsce package --out ./build patch --baseContentUrl https://localhost/";
exec(command, (error) => {
if (error) throw error;