You've already forked AstralRinth
forked from didirus/AstralRinth
* initial impl * merge from main * No more crashy * Almost there * fix import * fix more imports * Code cleanup, Fixed components, Added Tooltip * Added Env ind and Category pages --------- Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-prefix-selector': {
|
|
prefix: ':not(:where(.vp-raw *))',
|
|
includeFiles: [/vp-doc\.css/],
|
|
transform(prefix, _selector) {
|
|
const [selector, pseudo = ''] = _selector.split(/(:\S*)$/)
|
|
return selector + prefix + pseudo
|
|
}
|
|
}
|
|
}
|
|
}
|