use bun, install inter

This commit is contained in:
split / May 2024-06-24 17:00:52 -07:00
parent 20265c4369
commit 6d6e44224e
Signed by: split
GPG key ID: C325C61F0BF517C0
4 changed files with 1849 additions and 25 deletions

BIN
bun.lockb Executable file

Binary file not shown.

1802
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -23,5 +23,8 @@
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"type": "module"
"type": "module",
"dependencies": {
"@fontsource-variable/inter": "^5.0.18"
}
}

19
src/routes/+layout.svelte Normal file
View file

@ -0,0 +1,19 @@
<script>
import "@fontsource-variable/inter"
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ava</title>
<style>
body {
font-family: "Inter Variable", "Inter", sans-serif;
}
</style>
</head>
<body>
<slot />
</body>
</html>