mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 00:36:56 +02:00
start website
This commit is contained in:
parent
f7eb1ee696
commit
a2c207347e
23 changed files with 2593 additions and 58 deletions
19
site/project.data.ts
Normal file
19
site/project.data.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { defineConfig } from "vitepress";
|
||||
import { readFileSync } from "node:fs";
|
||||
import { join, dirname } from "node:path";
|
||||
import { fileURLToPath } from "node:url";
|
||||
|
||||
const PROJECT = "sqlite-vec";
|
||||
const VERSION = readFileSync(
|
||||
join(dirname(fileURLToPath(import.meta.url)), "..", "VERSION"),
|
||||
"utf8"
|
||||
);
|
||||
|
||||
export default {
|
||||
load() {
|
||||
return {
|
||||
PROJECT,
|
||||
VERSION,
|
||||
};
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue