123456789101112131415161718192021222324252627 |
- "use strict"
- const extensions = [
- // https://github.com/Microsoft/vscode/blob/master/extensions/html/package.json
- ".html",
- ".htm",
- ".shtml",
- ".xhtml",
- ".xht",
- ".mdoc",
- ".jsp",
- ".asp",
- ".aspx",
- ".jshtm",
- ".volt",
- ".ejs",
- ".rhtml",
- ]
- module.exports = {
- overrides: [
- {
- files: extensions.flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
- customSyntax: "postcss-html",
- },
- ],
- }
|