# Page Meta 注入

在小程序产物中插入page-meta标签。

# 如何使用

安装

pnpm add @plugin-light/webpack-loader-insert-page-meta -D

vue.config.js 中配置如下:

const { LOADER: insertPageMeta } = require('@plugin-light/webpack-loader-insert-page-meta')';

module.exports = {
  chainWebpack(config) {
    config.module
      .rule('vue')
      .test(/\.vue$/)
      .use(insertPageMeta)
      .loader(insertPageMeta)
      .options({
        pages: ['views/sche/sche']
      })
      .end();
  },
};

# 参数

export type IInsertPageMetaOptions = {
  // 处理的页面
  pages?: Array<string>;
};

# 文章

vue项目转uni-app问题记录 (opens new window)

Last Updated: 2024/10/12 08:54:40