mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
module.exports = {
|
|
content: ["build/index.html", "build/static/js/*.js", "src/**/*.{ts,tsx}"],
|
|
css: ["build/static/css/*.css"],
|
|
output: "build/static/css",
|
|
variables: true,
|
|
fontFace: false,
|
|
keyframes: false,
|
|
safelist: {
|
|
greedy: [/^components-/, /^firing-[0-9]$/, /^alert-history-loading-/],
|
|
},
|
|
};
|