entry.config.js 5.0 KB

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