mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-21 01:12:59 +00:00
15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
"use strict";
|
|
|
|
const extensions = [
|
|
// https://github.com/withastro/language-tools/blob/main/packages/vscode/package.json
|
|
".astro",
|
|
];
|
|
module.exports = {
|
|
overrides: [
|
|
{
|
|
files: extensions.flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
|
|
customSyntax: "postcss-html",
|
|
},
|
|
],
|
|
};
|