Skip to content

Commit 8b7ce66

Browse files
committed
Update TanStack Start demo port configuration
- Changed the port suffix from "42" to "43" in index.html, package.json, and vite.config.ts to ensure consistent port usage across the TanStack Start demo. These changes improve the setup for the TanStack Start integration by standardizing the port configuration.
1 parent df68c76 commit 8b7ce66

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/dev-launchpad/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h2 style="margin-top: 64px;">Background services</h2>
175175
},
176176
{
177177
name: "TanStack Start demo",
178-
portSuffix: "42",
178+
portSuffix: "43",
179179
description: [
180180
"Src: ./examples/tanstack-start-demo",
181181
"Alpha SDK integration demo",

examples/tanstack-start-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"scripts": {
99
"typecheck": "tsc --noEmit",
1010
"clean": "rimraf .output && rimraf node_modules",
11-
"dev": "vite dev --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}42",
11+
"dev": "vite dev --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}43",
1212
"build": "vite build",
1313
"start": "node .output/server/index.mjs",
1414
"lint": "eslint --ext .ts,.tsx ."

examples/tanstack-start-demo/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default defineConfig(({ mode }) => {
6464

6565
return {
6666
server: {
67-
port: Number(`${process.env.NEXT_PUBLIC_STACK_PORT_PREFIX || "81"}42`),
67+
port: Number(`${process.env.NEXT_PUBLIC_STACK_PORT_PREFIX || "81"}43`),
6868
fs: {
6969
allow: [stackAuthRootPath],
7070
},

0 commit comments

Comments
 (0)