mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-22 18:02:42 +00:00
28 lines
424 B
JavaScript
28 lines
424 B
JavaScript
"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",
|
|
},
|
|
],
|
|
};
|