Skip to content

Commit ac7f9ea

Browse files
authored
switch to vite (#83)
1 parent 5cf9124 commit ac7f9ea

7 files changed

Lines changed: 764 additions & 319 deletions

File tree

frontend/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>RLBotGUI</title>
7+
</head>
8+
<body>
9+
<script type="module" src="/src/index.ts"></script>
10+
</body>
11+
</html>

frontend/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"private": true,
44
"version": "1.0.0",
55
"scripts": {
6-
"dev": "rsbuild dev",
7-
"build": "rsbuild build",
8-
"preview": "rsbuild preview"
6+
"dev": "vite",
7+
"build": "vite build",
8+
"preview": "vite preview"
99
},
1010
"dependencies": {
1111
"@thisux/sveltednd": "^0.0.20",
@@ -17,8 +17,8 @@
1717
},
1818
"devDependencies": {
1919
"@biomejs/biome": "^2.3.9",
20-
"@rsbuild/core": "^1.6.14",
21-
"@rsbuild/plugin-svelte": "^1.0.11",
22-
"typescript": "^5.9.3"
20+
"@sveltejs/vite-plugin-svelte": "^6.2.1",
21+
"typescript": "^5.9.3",
22+
"vite": "npm:vite@7.3.1"
2323
}
2424
}

0 commit comments

Comments
 (0)