tombi/docs
ya7010 cba24739ad
Update docs/src/routes/docs/json-schema.mdx
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-07-07 01:07:37 +09:00
..
public docs: darkmode icon. 2025-07-01 10:45:45 +09:00
scripts fix: link card. 2025-03-09 18:06:41 +09:00
src Update docs/src/routes/docs/json-schema.mdx 2025-07-07 01:07:37 +09:00
.gitignore feat: add search result. 2025-02-15 18:08:52 +09:00
app.config.ts docs: add title anchor. 2025-03-15 22:17:03 +09:00
breakpoints.json refactor: move breakpoints to separate JSON file 2025-05-05 16:08:32 +09:00
doc-index.json docs: add Code Action documentation entry 2025-06-21 08:44:36 +09:00
package.json chore(deps): bump prismjs from 1.29.0 to 1.30.0 2025-05-31 01:09:51 +00: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 refactor: move breakpoints to separate JSON file 2025-05-05 16:08:32 +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