tombi/docs
2025-12-20 12:26:42 +05:30
..
public chore: remove TOMBI_INSTALL_DIR. 2025-12-12 11:51:30 +09:00
scripts chore(deps): update dependencies in pnpm-lock.yaml and package.json, including @solidjs/router, @solidjs/start, mdast-util-gfm, jsdom, and others; adjust GitHub Actions workflow for Node.js version handling 2025-12-09 01:25:30 +09:00
src docs: fix default config and escape asterisk 2025-12-20 12:26:42 +05:30
.gitignore feat: add search result. 2025-02-15 18:08:52 +09:00
app.config.ts docs: update tombi documents. 2025-11-16 20:34:33 +09:00
breakpoints.json refactor: move breakpoints to separate JSON file 2025-05-05 16:08:32 +09:00
doc-index.json fix: correct JSON syntax in doc-index.json 2025-12-13 09:14:13 +09:00
package.json chore(deps): update dependencies in pnpm-lock.yaml and package.json, including @solidjs/router, @solidjs/start, mdast-util-gfm, jsdom, and others; adjust GitHub Actions workflow for Node.js version handling 2025-12-09 01:25:30 +09:00
README.md feat: add docs template. 2025-02-13 10:25:07 +09:00
tsconfig.json feat: implement dynamic page title in Header component 2025-05-06 12:01:36 +09:00
uno.config.ts docs: update style. 2025-11-06 23:16:53 +09:00

SolidStart

Everything you need to build a Solid project, powered by solid-start;

Creating a project

# create a new project in the current directory
npm init solid@latest

# create a new project in my-app
npm init solid@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

Solid apps are built with presets, which optimise your project for deployment to different environments.

By default, npm run build will generate a Node app that you can run with npm start. To use a different preset, add it to the devDependencies in package.json and specify in your app.config.js.

This project was created with the Solid CLI