start website

This commit is contained in:
Alex Garcia 2024-05-10 20:49:47 -07:00
parent f7eb1ee696
commit a2c207347e
23 changed files with 2593 additions and 58 deletions

19
site/project.data.ts Normal file
View 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,
};
},
};