blob: e739ef4b6c118bbd7c58a8ead8cd2344d5f981cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { dev } from '$app/environment';
// we don't need any JS on this page, though we'll load
// it in dev so that we get hot module replacement
export const csr = dev;
// since there's no dynamic data here, we can prerender
// it so that it gets served as a static asset in production
export const prerender = true;
|