mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-24 12:45:52 +10:00
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
/* eslint-disable */
|
|
import rootMixins from '@app/root-mixins'
|
|
function injectRootMixins (options) {
|
|
if (!options.mixins) {
|
|
options.mixins = []
|
|
}
|
|
options.mixins.push(...rootMixins)
|
|
}
|