Get to where I can select communications and see them
This commit is contained in:
parent
5f54cfa6ed
commit
7dd61a06e2
5 changed files with 62 additions and 43 deletions
8
build.js
8
build.js
|
|
@ -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",
|
||||
}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue