entry.config.js 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. module.exports = {
  2. prod: {
  3. 'index': './src/js/index.js',
  4. 'service': './src/js/service.js',
  5. 'register': './src/js/register.js',
  6. 'technologyTrading': './src/js/technologyTrading.js',
  7. 'thinkTank': './src/js/thinkTank.js',
  8. 'financialIndex': './src/js/financialIndex.js',
  9. 'technologyTrading/achievement': './src/js/technologyTrading/achievement.js',
  10. 'technologyTrading/demand': './src/js/technologyTrading/demand.js',
  11. 'technologyTrading/achievementDetail': './src/js/technologyTrading/achievementDetail.js',
  12. 'technologyTrading/demandDetail': './src/js/technologyTrading/demandDetail.js',
  13. 'thinkTank/policyDetail': './src/js/thinkTank/policyDetail.js',
  14. 'thinkTank/policyList': './src/js/thinkTank/policyList.js',
  15. 'thinkTank/thinkerDetail': './src/js/thinkTank/thinkerDetail.js',
  16. 'financial/investmentInstitution': './src/js/financial/investmentInstitution.js',
  17. 'financial/investmentDetail': './src/js/financial/investmentDetail.js',
  18. 'highTechCognizance': './src/js/highTechCognizance.js'
  19. },
  20. watch: {
  21. 'index': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  22. 'webpack/hot/only-dev-server',
  23. './src/js/index.js'
  24. ],
  25. 'service': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  26. 'webpack/hot/only-dev-server',
  27. './src/js/service.js'
  28. ],
  29. 'register': ['webpack-dev-server/client?http://127.0.0.1:80',
  30. 'webpack/hot/only-dev-server',
  31. './src/js/register.js'
  32. ],
  33. 'technologyTrading': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  34. 'webpack/hot/only-dev-server',
  35. './src/js/technologyTrading.js'
  36. ],
  37. 'thinkTank': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  38. 'webpack/hot/only-dev-server',
  39. './src/js/thinkTank.js'
  40. ],
  41. 'financialIndex': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  42. 'webpack/hot/only-dev-server',
  43. './src/js/financialIndex.js'
  44. ],
  45. 'technologyTrading/achievement': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  46. 'webpack/hot/only-dev-server',
  47. './src/js/technologyTrading/achievement.js'
  48. ],
  49. 'technologyTrading/demand': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  50. 'webpack/hot/only-dev-server',
  51. './src/js/technologyTrading/demand.js'
  52. ],
  53. 'technologyTrading/achievementDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  54. 'webpack/hot/only-dev-server',
  55. './src/js/technologyTrading/achievementDetail.js'
  56. ],
  57. 'technologyTrading/demandDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  58. 'webpack/hot/only-dev-server',
  59. './src/js/technologyTrading/demandDetail.js'
  60. ],
  61. 'thinkTank/policyDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  62. 'webpack/hot/only-dev-server',
  63. './src/js/thinkTank/policyDetail.js'
  64. ],
  65. 'thinkTank/thinkerDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  66. 'webpack/hot/only-dev-server',
  67. './src/js/thinkTank/thinkerDetail.js'
  68. ],
  69. 'thinkTank/policyList': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  70. 'webpack/hot/only-dev-server',
  71. './src/js/thinkTank/policyList.js'
  72. ],
  73. 'financial/investmentInstitution': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  74. 'webpack/hot/only-dev-server',
  75. './src/js/financial/investmentInstitution.js'
  76. ],
  77. 'financial/investmentDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  78. 'webpack/hot/only-dev-server',
  79. './src/js/financial/investmentDetail.js'
  80. ],
  81. 'highTechCognizance': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  82. 'webpack/hot/only-dev-server',
  83. './src/js/highTechCognizance.js'
  84. ]
  85. }
  86. };