Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I was debugging only the
next-js
templates, and tested only onesveltekit
configuration (default one).The biggest issue atm is nextjs with js.
In all created js projects
tsconfig.json
is automatically created together withtypes.d.ts
, andtypescript
andtypescript-eslint
are part ofpackage.json
. I'm not sure what causes this, maybe eslint.config from the _base step. This results in the project running with err, after removing tsconfig, it works as expected.I fixed the tailwind part, didn't fix tho the gradient which I believe we'll probably remove all together once we update homepages. Nextjs changed their welcome pages too, they simplified it and remove gradient (even tho they still haven't upgraded to tailwind v4).
tailwind.config.ts not needed anymore with tailwind v4, also content array should not be defined since they do it automatically.
Added await when getting the auth.getSession(); in the app router (needed since nextjs15).
In the pages router there was missing template when both auth and tw is used, I added those to both JS and TS.
I tested auth, app router/pages-router, js/ts, tailwind/no-tailwind.
NOTE / Future steps:
We need to discuss if we want to continue JS templates. And also updating homepages to be more gel oriented instead of specific FW oriented.