entry.config.js 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/policy': './src/js/thinkTank/policy.js',
  14. 'thinkTank/policyDetail': './src/js/thinkTank/policyDetail.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. },
  19. watch: {
  20. 'index': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  21. 'webpack/hot/only-dev-server',
  22. './src/js/index.js'
  23. ],
  24. 'service': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  25. 'webpack/hot/only-dev-server',
  26. './src/js/service.js'
  27. ],
  28. 'register': ['webpack-dev-server/client?http://127.0.0.1:80',
  29. 'webpack/hot/only-dev-server',
  30. './src/js/register.js'
  31. ],
  32. 'technologyTrading': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  33. 'webpack/hot/only-dev-server',
  34. './src/js/technologyTrading.js'
  35. ],
  36. 'thinktank': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  37. 'webpack/hot/only-dev-server',
  38. './src/js/thinktank.js'
  39. ],
  40. 'financialIndex': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  41. 'webpack/hot/only-dev-server',
  42. './src/js/financialIndex.js'
  43. ],
  44. 'technologyTrading/achievement': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  45. 'webpack/hot/only-dev-server',
  46. './src/js/technologyTrading/achievement.js'
  47. ],
  48. 'technologyTrading/demand': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  49. 'webpack/hot/only-dev-server',
  50. './src/js/technologyTrading/demand.js'
  51. ],
  52. 'technologyTrading/achievementDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  53. 'webpack/hot/only-dev-server',
  54. './src/js/technologyTrading/achievementDetail.js'
  55. ],
  56. 'technologyTrading/demandDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  57. 'webpack/hot/only-dev-server',
  58. './src/js/technologyTrading/demandDetail.js'
  59. ],
  60. 'thinkTank/policy': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  61. 'webpack/hot/only-dev-server',
  62. './src/js/thinkTank/policy.js'
  63. ],
  64. 'thinkTank/policyDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  65. 'webpack/hot/only-dev-server',
  66. './src/js/thinkTank/policyDetail.js'
  67. ],
  68. 'thinkTank/thinkerDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  69. 'webpack/hot/only-dev-server',
  70. './src/js/thinkTank/thinkerDetail.js'
  71. ],
  72. 'financial/investmentInstitution': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  73. 'webpack/hot/only-dev-server',
  74. './src/js/financial/investmentInstitution.js'
  75. ],
  76. 'financial/investmentDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
  77. 'webpack/hot/only-dev-server',
  78. './src/js/financial/investmentDetail.js'
  79. ],
  80. }
  81. };