FredKSchott / create-snowpack-app

The all-in-one app template for Snowpack. [moved]
https://www.snowpack.dev
Other
727 stars 96 forks source link

add vue template preprocessor lang support #103

Closed dlindenkreuz closed 4 years ago

dlindenkreuz commented 4 years ago

Support all template preprocessors that are supported by @vue/compiler-sfc (uses https://github.com/tj/consolidate.js/ under the hood, see consolidate.js README for full list of languages).

Example using pug:

<template lang="pug">
.App
  a(href="//vuejs.org") Hi
</template>
// package.json
"devDependencies": {
  // ...
  "pug": "^3.0.0"
}
FredKSchott commented 4 years ago

Awesome!