webpack.config.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. pornhub: './pornhub/pornhub.js',
  9. xvideos: './xvideos/xvideos.js',
  10. tiktok: './tiktok/tiktok.js',
  11. youtubev1: './youtube/youtubev1.js',
  12. youtubev2: './youtube/youtubev2.js',
  13. },
  14. output: {
  15. path: path.resolve(__dirname),
  16. filename: '[name].bundle.js',
  17. },
  18. optimization: {
  19. minimizer: [
  20. new UglifyJsPlugin({
  21. uglifyOptions: {
  22. mangle: {
  23. reserved: ['detail', 'search'], // 保留指定函数名
  24. },
  25. compress: {
  26. // 压缩选项配置
  27. unused: true,
  28. dead_code: true,
  29. // drop_console: true,
  30. },
  31. output: {
  32. beautify: false, // 禁用美化输出
  33. },
  34. },
  35. }),
  36. ],
  37. },
  38. plugins: [
  39. new WebpackObfuscator({
  40. rotateUnicodeArray: true,
  41. compact: true,
  42. stringArray: true,
  43. stringArrayEncoding: ['base64'],
  44. }),
  45. ],
  46. devtool: 'source-map'
  47. };