feat: Implemented emulator installation

feat: Updated romm API version
feat: Updated es-de rules
feat: Added tabs to game details
refactor: returned to global query definitions to help with typescript performance
This commit is contained in:
Simeon Radivoev 2026-03-22 01:11:21 +02:00
parent cf6fff6fac
commit 3750e9ed8f
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
103 changed files with 4888 additions and 1632 deletions

View file

@ -8,7 +8,6 @@ import staticAssetsPlugin from 'vite-static-assets-plugin';
import os from 'node:os';
import tsconfigPaths from 'vite-tsconfig-paths';
import { host } from "./src/bun/utils/host";
import { VitePWA } from 'vite-plugin-pwa';
export default defineConfig(({ command }) =>
{
@ -29,7 +28,7 @@ export default defineConfig(({ command }) =>
target: 'react',
routesDirectory: "./routes/",
generatedRouteTree: "./gen/routeTree.gen.ts",
autoCodeSplitting: command === 'build',
autoCodeSplitting: true,
routeFileIgnorePrefix: "-",
quoteStyle: "single"
}),
@ -71,7 +70,6 @@ export default defineConfig(({ command }) =>
return 'zod';
if (id.includes('node_modules/@tanstack'))
return 'tanstack';
console.log(id);
if (id.includes('node_modules'))
return 'vendor';
if (id.endsWith('SvgIcon.tsx'))