Sha256: 3e165428fee7c7447d799084d06c3be30ba4daab59b2941ddb7c24818aa6931e
Contents?: true
Size: 900 Bytes
Versions: 9
Compression:
Stored size: 900 Bytes
Contents
import {defineConfig} from 'astro/config'; import starlight from '@astrojs/starlight'; // https://astro.build/config export default defineConfig({ integrations: [ starlight({ title: 'jscodeshift', social: { github: 'https://github.com/facebook/jscodeshift', }, sidebar: [ { label: 'Overview', items: [ // Each item here is one entry in the navigation menu. {label: 'Introduction', link: '/overview/introduction/'}, ], }, { label: 'Building', items: [ {label: 'API Reference', link: '/build/api-reference/'}, {label: 'AST Grammar', link: '/build/ast-grammar/'}, ], }, { label: 'Running', items: [ {label: 'CLI', link: '/run/cli/'}, ], }, ], }), ], });
Version data entries
9 entries across 9 versions & 1 rubygems