Skip to content

Commit 7b9263c

Browse files
ajitpratap0Ajit Pratap Singhclaude
authored
fix(website): add trailing slash to base path for WASM loading (#373)
* design(website): upgrade typography to IBM Plex Mono + Instrument Sans Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * design(website): add hero glow effects and gradient headline Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * design(website): SVG feature icons with glow hover + syntax-highlighted code Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(website): add trailing slash to base path for WASM loading BASE_URL was '/GoSQLX' without trailing slash, causing WASM paths to resolve as '/GoSQLXwasm/wasm_exec.js' instead of '/GoSQLX/wasm/wasm_exec.js'. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Ajit Pratap Singh <ajitpratapsingh@Ajits-Mac-mini-2655.local> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d18539f commit 7b9263c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import tailwind from '@astrojs/tailwind';
44

55
export default defineConfig({
66
site: 'https://ajitpratap0.github.io',
7-
base: '/GoSQLX',
7+
base: '/GoSQLX/',
88
integrations: [react(), tailwind()],
99
output: 'static',
1010
});

0 commit comments

Comments
 (0)