Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ yarn.lock
.vercel
.output
.vinxi
.netlify
.tanstack-start/build
.nitro/*
.netlify/*

/build/
/api/
Expand Down
70 changes: 70 additions & 0 deletions .tanstack-start/server-routes/routeTree.gen.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/* eslint-disable */

// @ts-nocheck

// noinspection JSUnusedGlobalSymbols

// This file was automatically generated by TanStack Router.
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.

// Import Routes

import type {
FileRoutesByPath,
CreateServerFileRoute,
} from '@tanstack/react-start/server'
import {
createServerRoute,
createServerFileRoute,
} from '@tanstack/react-start/server'

// Create/Update Routes

const rootRoute = createServerRoute()

// Populate the FileRoutesByPath interface

declare module '@tanstack/react-start/server' {
interface FileRoutesByPath {}
}

// Add type-safety to the createFileRoute function across the route tree

// Create and export the route tree

export interface FileRoutesByFullPath {}

export interface FileRoutesByTo {}

export interface FileRoutesById {
__root__: typeof rootRoute
}

export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths: never
fileRoutesByTo: FileRoutesByTo
to: never
id: '__root__'
fileRoutesById: FileRoutesById
}

export interface RootRouteChildren {}

const rootRouteChildren: RootRouteChildren = {}

export const routeTree = rootRoute
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()

/* ROUTE_MANIFEST_START
{
"routes": {
"__root__": {
"filePath": "__root.tsx",
"children": []
}
}
}
ROUTE_MANIFEST_END */
63 changes: 0 additions & 63 deletions app.config.ts

This file was deleted.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"with-env": "dotenv -e ../../.env",
"dev:frontend": "pnpm run with-env vinxi dev",
"dev:frontend": "pnpm run with-env vite dev",
"dev:backend": "convex dev --tail-logs",
"build": "vinxi build",
"start": "vinxi start",
"build": "vite build",
"start": "vite start",
"lint": "prettier --check '**/*' --ignore-unknown && eslint --ext .ts,.tsx ./src",
"format": "prettier --write '**/*' --ignore-unknown",
"linkAll": "node scripts/link.js"
Expand All @@ -35,10 +35,10 @@
"@tanstack/pacer": "^0.2.0",
"@tanstack/react-pacer": "^0.2.0",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-router": "1.109.2",
"@tanstack/react-router-with-query": "1.109.2",
"@tanstack/router-devtools": "1.109.2",
"@tanstack/start": "1.111.1",
"@tanstack/react-router": "1.120.4-alpha.13",
"@tanstack/react-router-with-query": "1.120.4-alpha.13",
"@tanstack/react-start": "1.120.4-alpha.13",
"@tanstack/react-router-devtools": "1.120.4-alpha.13",
"@types/d3": "^7.4.3",
"@typescript-eslint/parser": "^7.2.0",
"@vercel/analytics": "^1.2.2",
Expand Down Expand Up @@ -74,7 +74,6 @@
"shiki": "^1.4.0",
"tailwind-merge": "^1.14.0",
"tiny-invariant": "^1.3.3",
"vinxi": "^0.5.3",
"vite-tsconfig-paths": "^5.0.1",
"zod": "^3.23.8",
"zustand": "^4.5.2"
Expand All @@ -94,16 +93,17 @@
"postcss": "^8.4.35",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.6.3"
"typescript": "^5.6.3",
"vite": "^6.3.5"
},
"engines": {
"node": ">=18.0.0"
},
"_pnpm": {
"overrides": {
"@tanstack/react-router": "file:../router/packages/react-router",
"@tanstack/router-devtools": "file:../router/packages/router-devtools",
"@tanstack/start": "file:../router/packages/start",
"@tanstack/react-router-devtools": "file:../router/packages/router-devtools",
"@tanstack/react-start": "file:../router/packages/react-start",
"@tanstack/history": "file:../router/packages/history",
"@tanstack/react-store": "file:../router/packages/react-router/node_modules/@tanstack/react-store",
"@tanstack/router-vite-plugin": "file:../router/packages/router-vite-plugin",
Expand Down
Loading
Loading