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
2 changes: 0 additions & 2 deletions examples/react/start-bare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@
"zod": "^3.24.2"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.8",
"@types/node": "^22.5.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"tailwindcss": "^4.0.8",
"typescript": "^5.7.2",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/react/start-bare/src/routes/__root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function RootDocument({ children }: { children: React.ReactNode }) {
<HeadContent />
</head>
<body>
<div className="p-2 flex gap-2 text-lg">
<div>
<Link to="/">Index</Link>
<Link to="/about">About</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion examples/react/start-bare/src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const Route = createFileRoute('/')({
function RouteComponent() {
return (
<main>
<h1 className="text-3xl text-blue-500 mb-5">Hello world!</h1>
<h1>Hello world!</h1>
</main>
)
}
2 changes: 0 additions & 2 deletions examples/react/start-bare/src/styles/app.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@import 'tailwindcss';

body {
font-family:
Gordita, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
Expand Down
2 changes: 0 additions & 2 deletions examples/solid/start-bare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@
"zod": "^3.24.2"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.8",
"@types/node": "^22.10.2",
"vite-plugin-solid": "^2.11.2",
"combinate": "^1.1.11",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/solid/start-bare/src/routes/__root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const Route = createRootRoute({
function RootDocument({ children }: { children: Solid.JSX.Element }) {
return (
<>
<div class="p-2 flex gap-2 text-lg">
<div>
<Link to="/">Index</Link>
<Link to="/about">About</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion examples/solid/start-bare/src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Route = createFileRoute('/')({
function RouteComponent() {
return (
<main>
<h1 class="text-3xl text-blue-500 mb-5">Hello world!</h1>
<h1>Hello world!</h1>
<Counter />
</main>
)
Expand Down
2 changes: 0 additions & 2 deletions examples/solid/start-bare/src/styles/app.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@import 'tailwindcss';

body {
font-family:
Gordita, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
Expand Down
2 changes: 0 additions & 2 deletions examples/solid/start-bare/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { defineConfig } from 'vite'
import tsConfigPaths from 'vite-tsconfig-paths'
import { tanstackStart } from '@tanstack/solid-start/plugin/vite'
import tailwindcss from '@tailwindcss/vite'

export default defineConfig({
server: {
Expand All @@ -12,6 +11,5 @@ export default defineConfig({
projects: ['./tsconfig.json'],
}),
tanstackStart(),
tailwindcss(),
],
})
16 changes: 2 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.