1.0.1 • Published 4 years ago

@pyoner/svelte-nossr-preprocess v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

No SSR preprocessor for Svelte

This preprocessor remove a code from the script tag, see example:

<script nossr>
  // client only code
  console.log("No SSR");
  let x = 5;
</script>

<!-- inside the tag "nossr" all data will be removed by the preprocessor  -->
<nossr>
  <h1>No SSR</h1>
  {x}
</nossr>

Instalation

npm i -D @pyoner/svelte-nossr-preprocess

How to use the preprocessor?

See the rollup config for Sapper