mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-21 17:32:41 +00:00
20 lines
333 B
JavaScript
20 lines
333 B
JavaScript
"use strict";
|
|
|
|
const extensions = [
|
|
// https://github.com/Microsoft/vscode/blob/main/extensions/php/package.json
|
|
".php",
|
|
".php4",
|
|
".php5",
|
|
".phtml",
|
|
".ctp",
|
|
];
|
|
|
|
module.exports = {
|
|
overrides: [
|
|
{
|
|
files: extensions.flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
|
|
customSyntax: "postcss-html",
|
|
},
|
|
],
|
|
};
|