mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			268 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			268 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',
 | 
						|
			pagination: false,
 | 
						|
		}),
 | 
						|
	],
 | 
						|
});
 |