don't prerender character list and image list
This commit is contained in:
parent
cd61454ce1
commit
c6b1ed8292
2 changed files with 9 additions and 7 deletions
|
@ -3,6 +3,8 @@ import config from "../../config.yaml";
|
|||
import Sidebar from "../components/Sidebar.astro";
|
||||
|
||||
const { title, background } = config;
|
||||
|
||||
export const prerender = false;
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
|
|
|
@ -39,7 +39,7 @@ const images = imageCollection.map((record) => {
|
|||
};
|
||||
});
|
||||
|
||||
export const prerender = true;
|
||||
export const prerender = false;
|
||||
---
|
||||
|
||||
<Gallery>
|
||||
|
|
Loading…
Add table
Reference in a new issue