mirror of https://github.com/zulip/zulip.git
13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
import starlight from '@astrojs/starlight';
|
||
|
|
||
|
// https://astro.build/config
|
||
|
export default defineConfig({
|
||
|
base: 'help-beta',
|
||
|
integrations: [
|
||
|
starlight({
|
||
|
title: 'Zulip help center',
|
||
|
}),
|
||
|
],
|
||
|
});
|