vue.config.js 576 B

1234567891011121314151617181920212223242526
  1. // const path = require("path");
  2. // function resolve(dir) {
  3. // return path.join(__dirname, dir);
  4. // }
  5. module.exports = {
  6. transpileDependencies: ['sockjs-client'],
  7. publicPath: '',
  8. configureWebpack: {
  9. resolve: {
  10. alias: {}
  11. },
  12. plugins: []
  13. },
  14. // outPutDir:'zyylgNew'
  15. // build: {
  16. // index: path.resolve(__dirname, '../dist/index.html'),
  17. //
  18. // assetsRoot: path.resolve(__dirname, '../dist'),
  19. //
  20. // assetsSubDirectory: 'assert',
  21. //
  22. // assetsPublicPath:'/zyylg/'
  23. // }
  24. };