- Base Framework is Nuxt 4
- Uses b10cks CMS
- Provides a basic content structure to get started
- Includes VueUse for common Vue utilities
- Includes Tailwind CSS for styling
- Includes nuxt-schema-org for structured data
- TypeScript support
- Configures OxLint and OxFmt with opinionated rules
- Sensible defaults for Zed editor
Make sure you've installed the b10cks CLI:
bun install -g b10cks-cliFollow these steps to set up b10cks:
- Create a new b10cks account at b10cks.com.
- Create a new space in b10cks.
- Create a new API token in the space settings
- Go to
Configuration > Access Tokensand clickGenerate Token. - Copy the token and put into
.envfile.
- Go to
- Login via the CLI using
b10cks login
bun installProvide an SSL-certificate in the root of the project. You can create a self-signed certificate with the following commands:
openssl req -x509 -newkey rsa:4096 -keyout localhost.pem -out localhost.pem -days 365 -nodesStart the development server on https://localhost:3001:
bun run dev-sslBuild the application for production:
bun run buildLocally preview production build:
bun run preview