architecture, fix vendor prefixing

This commit is contained in:
Jacky Zhao
2023-08-07 17:34:38 -07:00
parent 7639abf0eb
commit 15be857598
10 changed files with 77 additions and 7 deletions

View File

@ -161,6 +161,12 @@ export const ComponentResources: QuartzEmitterPlugin<Options> = (opts?: Partial<
filename: "index.css",
code: Buffer.from(stylesheet),
minify: true,
targets: {
safari: (15 << 16) | (6 << 8), // 15.6
edge: 115 << 16,
firefox: 102 << 16,
chrome: 109 << 16,
},
include: Features.MediaQueries,
}).code.toString(),
}),