Skip to content

Commit edc8466

Browse files
switch to vite
1 parent 18cde72 commit edc8466

8 files changed

Lines changed: 943 additions & 536 deletions

File tree

frontend/omni/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
</head>
88
<body>
99
<div id="app"></div>
10+
<script type="module" src="/src/main.ts"></script>
1011
</body>
1112
</html>

frontend/omni/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@
44
"version": "0.0.0",
55
"type": "module",
66
"scripts": {
7-
"dev": "rsbuild dev",
8-
"build": "rsbuild build",
7+
"dev": "vite",
8+
"build": "vite build",
99
"check": "biome check",
1010
"check:write": "biome check --write",
11-
"preview": "rsbuild preview",
12-
"test": "rstest run"
11+
"preview": "vite preview",
12+
"test": "vitest run"
1313
},
1414
"dependencies": {
1515
"svelte": "^5.53.13",
1616
"tailwindcss": "^4.2.1"
1717
},
1818
"devDependencies": {
1919
"@biomejs/biome": "^2.4.7",
20-
"@rsbuild/core": "^1.7.3",
21-
"@rsbuild/plugin-svelte": "^1.1.1",
22-
"@rstest/core": "^0.9.2",
23-
"@tailwindcss/postcss": "^4.2.1",
20+
"@sveltejs/vite-plugin-svelte": "^5.0.3",
21+
"@tailwindcss/vite": "^4.2.1",
2422
"happy-dom": "^20.8.4",
25-
"typescript": "^5.9.3"
23+
"typescript": "^5.9.3",
24+
"vite": "^6.3.5",
25+
"vitest": "^3.2.4"
2626
}
2727
}

0 commit comments

Comments
 (0)