zhereh-frontend

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

+page.ts (321B)


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