Skip to content

v0.3.0-beta.0 Add pre rendering

Pre-release
Pre-release

Choose a tag to compare

@B-3PO B-3PO released this 13 Jan 00:30
· 7 commits to master since this release
  • Pre rendering prevents any page flashes from happening
  • update build method so it returns { title, head, body }
    You will now need to inject head into your template
module.exports = ({title, head, body}) => `
  <head>
    <title>${title}</title>
    ${head}
  </head>
  <body>
    ${body}
  </body>
`;