Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.17 KB

README.en.md

File metadata and controls

34 lines (24 loc) · 1.17 KB

swm-v2

  • soild-start
  • unocss
  • bun

Developing

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

Building

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.

Commit

Refernce: nabi-chan/turborepo-template

  • feat: A new feature
  • fix: A bug fix
  • docs: Documentation only changes
  • style: 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 feature
  • perf: A code change that improves performance
  • test: Adding missing or correcting existing tests
  • chore: Changes to the build process or auxiliary tools and libraries such as documentation generation