Get to where I can select communications and see them

This commit is contained in:
Eli Ribble 2026-03-22 04:08:16 +00:00
parent 5f54cfa6ed
commit 7dd61a06e2
No known key found for this signature in database
5 changed files with 62 additions and 43 deletions

View file

@ -48,6 +48,14 @@ const config = {
buildStatusPlugin, // Add this first
sassPlugin({
quietDeps: true,
precompile(source, pathname) {
// Only inject variables into Vue component styles
// (not the main scss files to avoid circular imports)
if (pathname.endsWith(".vue")) {
return `@import "./ts/style/variables.scss";\n${source}`;
}
return source;
},
silenceDeprecations: ["import"],
type: "css",
}),