- soild-start
- unocss
- bun
Once you've created a project and installed dependencies with bun i
start a development server:
bun dev
# or start the server and open the app in a new browser tab
bun dev -- --open
Solid apps are built with adapters, which optimise your project for deployment to different environments.
By default, bun run build
will generate a Node* app that you can run with bun start
. To use a different adapter, add it to the devDependencies
in package.json
and specify in your vite.config.js
.
Refernce: nabi-chan/turborepo-template
feat
: A new featurefix
: A bug fixdocs
: Documentation only changesstyle
: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)refactor
: A code change that neither fixes a bug nor adds a featureperf
: A code change that improves performancetest
: Adding missing or correcting existing testschore
: Changes to the build process or auxiliary tools and libraries such as documentation generation