diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2023-10-18 23:02:37 -0700 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2023-10-18 23:02:37 -0700 |
commit | 9168219b829aab55fefcb114937d3fc196548cde (patch) | |
tree | 4fa3fdb99d1820034ac1d97b66571a304446eeb4 /extension/scripts | |
parent | 0865d37b6c343f86c48cd7f768781bba142b2007 (diff) | |
download | sncontinue-9168219b829aab55fefcb114937d3fc196548cde.tar.gz sncontinue-9168219b829aab55fefcb114937d3fc196548cde.tar.bz2 sncontinue-9168219b829aab55fefcb114937d3fc196548cde.zip |
Cleanup
Diffstat (limited to 'extension/scripts')
-rw-r--r-- | extension/scripts/package.js | 4 |
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; |