Rocket Logo Rocket Guides Docs Blog Toggle darkmode

Presets: Getting Started

Presets are partial rocket configs that combine any number of plugins to add specific features. Rocket is built on these presets, like rocketLaunch, rocketBlog, and rocketSearch

You can use a preset via the config by adding it to the presets array

import { rocketLaunch } from '@rocket/launch';
import { rocketBlog } from '@rocket/blog';
import { rocketSearch } from '@rocket/search';

/** @type {import('@rocket/cli').RocketCliOptions} */
export default ({
  presets: [rocketLaunch(), rocketBlog(), rocketSearch()],
});

Community Presets

There are a number of community-made presets available:

Want your plugin listed here? Please create a PR!