phenomic
Version:
Modern website generator based on the React and Webpack ecosystem.
17 lines (13 loc) • 438 B
JavaScript
// @flow
import initHeadPropertyFromConfig
from "../loader-plugin-init-head-property-from-config"
import initHeadPropertyFromContent
from "../loader-plugin-init-head-property-from-content"
import initBodyPropertyFromContent
from "../loader-plugin-init-body-property-from-content"
const plugins: Array<mixed> = [
initHeadPropertyFromConfig,
initHeadPropertyFromContent,
initBodyPropertyFromContent,
]
export default plugins