mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-21 09:23:00 +00:00
15 lines
253 B
JavaScript
15 lines
253 B
JavaScript
"use strict";
|
|
|
|
const extensions = [
|
|
// https://v3.vuejs.org/api/sfc-spec.html
|
|
".vue",
|
|
];
|
|
module.exports = {
|
|
overrides: [
|
|
{
|
|
files: extensions.flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
|
|
customSyntax: "postcss-html",
|
|
},
|
|
],
|
|
};
|