vue.config.js 556 B

123456789101112131415161718192021222324252627
  1. const { defineConfig } = require('@vue/cli-service')
  2. // module.exports = defineConfig({
  3. // transpileDependencies: true,
  4. // lintOnSave:false,
  5. // //publicPath: '/ghjg-digital-twin'
  6. // publicPath: './'
  7. // })
  8. const webpack = require("webpack");
  9. module.exports = {
  10. transpileDependencies: true,
  11. lintOnSave:false,
  12. //publicPath: '/ghjg-digital-twin'
  13. publicPath: './',
  14. configureWebpack: {
  15. plugins: [
  16. new webpack.ProvidePlugin({
  17. $: "jquery",
  18. jQuery: "jquery",
  19. "windows.jQuery": "jquery",
  20. }),
  21. ],
  22. }
  23. }