mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-10 13:56:11 +10:00
10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
const { path } = require('@vuepress/shared-utils')
|
|
|
|
module.exports = (options, context) => ({
|
|
define: {
|
|
SELECTOR: options.selector || '.theme-default-content :not(a) > img',
|
|
OPTIONS: options.options
|
|
},
|
|
clientRootMixin: path.resolve(__dirname, 'clientRootMixin.js')
|
|
})
|