index.js 295 B

12345678910111213
  1. const path = require('path')
  2. module.exports = (options, ctx) => {
  3. return {
  4. clientRootMixin: path.resolve(__dirname, 'clientRootMixin.js'),
  5. extendPageData($page) {
  6. $page.alert = {
  7. top: 100
  8. }
  9. },
  10. enhanceAppFiles: path.resolve(__dirname, 'enhanceApp.js')
  11. }
  12. }