vue.config.js 228 B

123456789101112
  1. const webpack = require('webpack')
  2. module.exports = {
  3. configureWebpack: {
  4. externals: {
  5. 'pdfjs': 'pdfjsLib'
  6. },
  7. plugins: [
  8. new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /zh-cn/)
  9. ]
  10. }
  11. }