北斗天云官网前端
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

27 satır
557B

  1. const { defineConfig } = require('@vue/cli-service')
  2. const webpack = require("webpack")
  3. module.exports = defineConfig({
  4. transpileDependencies: true,
  5. lintOnSave: false,
  6. publicPath: './',
  7. configureWebpack: {
  8. plugins: [
  9. // 配置 jQuery 插件的参数
  10. new webpack.ProvidePlugin({
  11. $: 'jquery',
  12. jQuery: 'jquery',
  13. 'window.jQuery': 'jquery',
  14. Popper: ['popper.js', 'default']
  15. })
  16. ]
  17. },
  18. chainWebpack: config =>{
  19. config.plugin('html')
  20. .tap(args => {
  21. args[0].title = "北斗天云";
  22. return args;
  23. })
  24. }
  25. })