Skip to content

Commit 0920a27

Browse files
committed
fix(vscode-ext): use absolute URL for demo GIF on marketplace
The marketplace web page cannot load images from the VSIX bundle — it requires publicly accessible URLs. Use the full GitHub raw URL with the correct subdirectory path instead of a relative path.
1 parent 3d51367 commit 0920a27

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/vscode-ext/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Open, edit, and review Word documents directly in VS Code.
44

5-
![SuperDoc VS Code Extension Demo](demo.gif)
5+
![SuperDoc VS Code Extension Demo](https://raw.githubusercontent.com/superdoc-dev/superdoc/main/apps/vscode-ext/demo.gif)
66

77
## Features
88

apps/vscode-ext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"copy-assets": "cp webview/style.css dist/webview/",
7777
"build": "pnpm run compile",
7878
"watch": "pnpm run compile:ext -- --watch",
79-
"package": "vsce package --no-dependencies --no-rewrite-relative-links",
79+
"package": "vsce package --no-dependencies",
8080
"publish:vsce": "vsce publish --packagePath *.vsix",
8181
"lint": "eslint .",
8282
"lint:fix": "eslint --fix .",

0 commit comments

Comments
 (0)