mirror of
https://github.com/vrc-get/vrc-get.git
synced 2026-06-21 09:58:08 +00:00
chore: configure to use vite / tanstack router with
This commit is contained in:
parent
4dcfd673eb
commit
69d9e8ea33
4 changed files with 10 additions and 5 deletions
|
|
@ -25,6 +25,7 @@
|
|||
/*.ts
|
||||
/*.tsx
|
||||
/*.json
|
||||
/index.html
|
||||
|
||||
# documentation
|
||||
/*.md
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<title>ALCOM / vrc-get-gui</title>
|
||||
<script src="vrc-get://localhost/global-info.js"></script>
|
||||
<script src="http://vrc-get.localhost/global-info.js"></script>
|
||||
|
|
|
|||
|
|
@ -6,12 +6,11 @@
|
|||
"scripts": {
|
||||
"tauri": "npm install && tauri",
|
||||
"biome": "npm ci && biome",
|
||||
"dev": "next dev -p 3030",
|
||||
"build": "npm install && npm run build:licenses && npm run build:next",
|
||||
"build:next": "next build",
|
||||
"dev": "vite",
|
||||
"build": "npm install && npm run build:licenses && npm run build:vite",
|
||||
"build:vite": "vite build",
|
||||
"build:licenses": "node ./scripts/build-license-json.mjs",
|
||||
"format": "biome format",
|
||||
"start": "next start",
|
||||
"check": "biome check",
|
||||
"lint": "biome lint"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -27,5 +27,11 @@ export default defineConfig({
|
|||
},
|
||||
build: {
|
||||
outDir: "out",
|
||||
chunkSizeWarningLimit: Number.POSITIVE_INFINITY,
|
||||
},
|
||||
server: {
|
||||
port: 3030,
|
||||
strictPort: true,
|
||||
},
|
||||
clearScreen: false,
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue