仲裁视频会议H5

vue.config.js 301B

1234567891011121314
  1. // vue.config.j
  2. const { defineConfig } = require('@vue/cli-service');
  3. module.exports = defineConfig({
  4. // ...
  5. configureWebpack: (config) => {
  6. config.resolve.fallback = {
  7. ...config.resolve.fallback,
  8. url: false,
  9. path: false,
  10. fs: false,
  11. crypto: false,
  12. };
  13. },
  14. });