webpack.config.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. const path = require('path');
  2. const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
  3. const WebpackObfuscator = require('webpack-obfuscator');
  4. module.exports = {
  5. mode: 'production',
  6. entry: {
  7. youtube: './youtube/youtube.js',
  8. },
  9. output: {
  10. path: path.resolve(__dirname),
  11. filename: '[name].bundle.js',
  12. },
  13. optimization: {
  14. minimizer: [
  15. new UglifyJsPlugin({
  16. uglifyOptions: {
  17. mangle: {
  18. reserved: ['detail', 'search'], // 保留指定函数名
  19. },
  20. compress: {
  21. // 压缩选项配置
  22. unused: true,
  23. dead_code: true,
  24. // drop_console: true,
  25. },
  26. output: {
  27. beautify: false, // 禁用美化输出
  28. },
  29. },
  30. }),
  31. ],
  32. },
  33. plugins: [
  34. new WebpackObfuscator({
  35. rotateUnicodeArray: true,
  36. compact: true,
  37. stringArray: true,
  38. stringArrayEncoding: ['base64'],
  39. }),
  40. ],
  41. devtool: 'source-map'
  42. };