To preview docs of a package that uses Pollen.jl for documentation, use 
	
			
			servedocs:
			
			
			
			using
			
			 
			Pollen
			,
			
			 
			MyPackage
			
			
	
			servedocs
			(
			MyPackage
			)Once the pages are built, navigate to localhost:5173 to preview the documentation.
You can make changes to a file that is part of the documentation while the preview is running. For example, modify a Markdown file and Pollen.jl will reload it and rebuild just that page.
			To update open pages in the preview, press 
			
			Shift+R.
			When running [
			servedocs], you might face the following issue:
			
			[ Info: Starting server...
[ Info: Stopped frontend dev serverThis is likely due to some issues on the frontend side, especially of the installation.
To verify do the following:
			
			
			
			dir
			 
			=
			 
			
			Pollen
			.
			
			FRONTENDDIR
			
			
			cd
			(
			dir
			)
			
			
			run
			(
			
			
			
			`
			npm run install
			`
			)
			Look if any error appears. If so, you probably need 
			to upgrade your 
			npm and 
			node version
		
. Once the installation does not throw errors, try running
			
			
			
			run
			(
			
			
			
			`
			npm run dev
			`
			)
			
			
	
			servedocs
			(
			MyPackage
			
			;
			 
			
			frontend
			=
			false
			)and eventually report any errors appearing.
The following page links back here: