wild-next
wild-next copied to clipboard
Our next.js boilerplate with sane base configuration.
https://nextjs.org/docs/api-reference/next/image If so, does it make sense to also create a tiny styled-component wrapper around it?
- We should add a component generator to generate pages, components, hooks etc. using a standard template. - https://plopjs.com/ looks like a good candidate(?)
Hey guys, I saw that npm is widely used in our projects. I would like to understand if there are technical reasons behind this choice, or if it is something...
- Figure out if and what animation library should be added - We usually use GSAP for all animation needs
MacOS is by default case-insensitive (why??) which can lead to issues if "camelCased" files are misspelled. It will work on a developer's machine, but fail on the server. Using kebab-case...
Occasionally we have had situations where we needed to deploy an application to a sub-path of a domain. This change will make such deploys easier while having no negative impact...
Sitemaps are useful, but we usually only create one if there is a requirement or request for it. Should we start including a sitemap by default? Using https://github.com/iamvishnusankar/next-sitemap? It seems...
`next export` has been removed and it's not a valid command anymore. The correct way to get a static export is now by setting `output: "export"` in the `next.config` file....