vue.js 278 B

1234567891011121314
  1. "use strict"
  2. const extensions = [
  3. // https://v3.vuejs.org/api/sfc-spec.html
  4. ".vue",
  5. ]
  6. module.exports = {
  7. overrides: [
  8. {
  9. files: extensions.flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
  10. customSyntax: "postcss-html",
  11. },
  12. ],
  13. }