Skip to content

Commit 557bd9e

Browse files
authored
Vue rewrite (#1)
* bootstrap vue * navbar & theme toggle * wip font list * basic font loading * VIRTUAL RENDERING WEEEEEEEEE * font loading * react-b-gone
1 parent ca81479 commit 557bd9e

22 files changed

+757
-1958
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/>
1919
</head>
2020
<body>
21-
<div id="root"></div>
22-
<script type="module" src="/src/main.tsx"></script>
21+
<div id="app"></div>
22+
<script type="module" src="/src/main.ts"></script>
2323
</body>
2424
</html>

package.json

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,30 @@
66
"scripts": {
77
"dev": "vite",
88
"vercel:dev": "vercel dev",
9-
"build": "tsc && vite build",
10-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
9+
"build": "vue-tsc && vite build",
1110
"preview": "vite preview"
1211
},
1312
"dependencies": {
14-
"clsx": "^2.1.1",
13+
"@vueuse/core": "^10.10.1",
1514
"consola": "^3.2.3",
1615
"ky": "^1.3.0",
17-
"react": "^18.2.0",
18-
"react-dom": "^18.2.0",
19-
"react-toastify": "^10.0.5",
20-
"react-use": "^17.5.0",
21-
"react-virtualized-auto-sizer": "^1.0.24",
22-
"react-window": "^1.8.10",
23-
"tailwind-variants": "^0.2.1"
16+
"tailwind-variants": "^0.2.1",
17+
"vue": "^3.4.21",
18+
"vue-toastification": "2.0.0-rc.5"
2419
},
2520
"devDependencies": {
2621
"@tailwindcss/forms": "^0.5.7",
2722
"@types/node": "^20.14.2",
28-
"@types/react": "^18.2.66",
29-
"@types/react-dom": "^18.2.22",
30-
"@types/react-window": "^1.8.8",
31-
"@typescript-eslint/eslint-plugin": "^7.2.0",
32-
"@typescript-eslint/parser": "^7.2.0",
3323
"@vercel/node": "^3.1.7",
34-
"@vitejs/plugin-react-swc": "^3.5.0",
24+
"@vitejs/plugin-vue": "^5.0.4",
3525
"autoprefixer": "^10.4.19",
36-
"eslint": "^8.57.0",
37-
"eslint-plugin-react-hooks": "^4.6.0",
38-
"eslint-plugin-react-refresh": "^0.4.6",
39-
"prettier": "^3.3.1",
26+
"prettier": "^3.3.2",
4027
"tailwind-scrollbar": "^3.1.0",
4128
"tailwindcss": "^3.4.4",
42-
"tsx": "^4.15.1",
4329
"typescript": "^5.2.2",
4430
"vercel": "^34.2.6",
45-
"vite": "^5.2.0"
31+
"vite": "^5.2.0",
32+
"vue-tsc": "^2.0.6"
4633
},
4734
"pnpm": {
4835
"overrides": {

0 commit comments

Comments
 (0)