Skip to content

Commit ee89162

Browse files
committed
fix: update example file paths to use relative paths
1 parent fbfa3b5 commit ee89162

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/javascripts/playground-ui.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
* match the Rust implementation.
66
*/
77

8-
// Example files to load (absolute paths from site root)
8+
// Example files to load (relative paths)
99
const EXAMPLES = {
1010
'toon': {
1111
name: 'Hiking Data (Rows wins)',
12-
file: '/data/toon.json',
12+
file: '../data/toon.json',
1313
},
1414
'quote': {
1515
name: 'Stock Quote (Columns wins)',
16-
file: '/data/quote.json',
16+
file: '../data/quote.json',
1717
},
1818
'gainers': {
1919
name: 'Market Gainers (Struct wins)',
20-
file: '/data/gainers.json',
20+
file: '../data/gainers.json',
2121
},
2222
};
2323

0 commit comments

Comments
 (0)