mirror of
https://github.com/prymitive/karma
synced 2026-02-13 20:59:53 +00:00
18 lines
372 B
JavaScript
18 lines
372 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-/,
|
|
/^btn/,
|
|
/^--bs-/,
|
|
],
|
|
},
|
|
};
|