北斗天云官网后台管理前端UI
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

41 lines
926B

  1. /**
  2. * 配置参考: https://cli.vuejs.org/zh/config/
  3. */
  4. var webpack = require('webpack');
  5. module.exports = {
  6. publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
  7. configureWebpack:{
  8. module:{
  9. rules:[
  10. {
  11. test: /\.js$/,
  12. exclude: /node_modules(?!\/quill-image-drop-module|quill-image-resize-module)/,
  13. loader: 'babel-loader'
  14. }
  15. ]},
  16. plugins: [
  17. new webpack.ProvidePlugin({
  18. 'window.Quill': 'quill/dist/quill.js',
  19. 'Quill': 'quill/dist/quill.js'
  20. })
  21. ]
  22. },
  23. chainWebpack: config => {
  24. const svgRule = config.module.rule('svg')
  25. svgRule.uses.clear()
  26. svgRule
  27. .test(/\.svg$/)
  28. .use('svg-sprite-loader')
  29. .loader('svg-sprite-loader')
  30. },
  31. productionSourceMap: false,
  32. devServer: {
  33. open: true,
  34. port: 8001,
  35. overlay: {
  36. errors: true,
  37. warnings: true
  38. }
  39. }
  40. }