#How do i start a new project without the demo/test pages?

10 messages · Page 1 of 1 (latest)

onyx pivot
#

Hello, first of im really not a developer. I think its fun but thats not my main thing. Im a cybersecurity specialist (focusing in hacking/pentest) hence why i learn coding/programing but also because its fun to build things

Im fairly new to Tanstack start and all. Im a bit used to NextJs but want to move away from it. Tanstack Start seems fun and initally better. But my problem is that when i start a new project i get these test/demo pages with fonts and CSS and everything from the get go. I want to start a project with just the barebone so i can freely style it later and such.

#

Example setup:

#

Example pages even tho i choosed "No"

#

Might be some newbie thing im missing about Tanstack start but idk

lusty spindle
#

@quiet heath ^

quiet heath
#

That's just the index page. What we do when when say no to demos is not add any additional routes. All you need to do now is remove the HTML content from the JSX in __root.tsx and index.tsx in src/routes.

You can disable Tailwind too if you want by just removing it from the vite.config.ts and then removing the dependency.

onyx pivot
#

hh alrigt, fair enough. Thanks

acoustic flame
# onyx pivot hh alrigt, fair enough. Thanks

if you want to start with just the bare bone consider following this doesnt take long and can help you understand a bit more what does what https://tanstack.com/start/latest/docs/framework/react/build-from-scratch

[!NOTE] If you chose to quick start with an example or cloned project, you can skip this guide and move on to the guide. So you want to build a TanStack Start project from scratch? This guide will hel...