12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- module.exports = {
- prod: {
- 'index': './src/js/index.js',
- 'service': './src/js/service.js',
- 'register': './src/js/register.js',
- 'technologyTrading': './src/js/technologyTrading.js',
- 'thinktank': './src/js/thinktank.js',
- 'financialIndex': './src/js/financialIndex.js',
- 'technologyTrading/achievement': './src/js/technologyTrading/achievement.js',
- 'technologyTrading/demand': './src/js/technologyTrading/demand.js',
- 'technologyTrading/achievementDetail': './src/js/technologyTrading/achievementDetail.js',
- 'technologyTrading/demandDetail': './src/js/technologyTrading/demandDetail.js',
- 'thinkTank/policy': './src/js/thinkTank/policy.js',
- 'thinkTank/policyDetail': './src/js/thinkTank/policyDetail.js',
- 'thinkTank/thinkerDetail': './src/js/thinkTank/thinkerDetail.js',
- 'financial/investmentInstitution': './src/js/financial/investmentInstitution.js',
- 'financial/investmentDetail': './src/js/financial/investmentDetail.js',
- },
- watch: {
- 'index': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/index.js'
- ],
- 'service': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/service.js'
- ],
- 'register': ['webpack-dev-server/client?http://127.0.0.1:80',
- 'webpack/hot/only-dev-server',
- './src/js/register.js'
- ],
- 'technologyTrading': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/technologyTrading.js'
- ],
- 'thinktank': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/thinktank.js'
- ],
- 'financialIndex': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/financialIndex.js'
- ],
- 'technologyTrading/achievement': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/technologyTrading/achievement.js'
- ],
- 'technologyTrading/demand': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/technologyTrading/demand.js'
- ],
- 'technologyTrading/achievementDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/technologyTrading/achievementDetail.js'
- ],
- 'technologyTrading/demandDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/technologyTrading/demandDetail.js'
- ],
- 'thinkTank/policy': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/thinkTank/policy.js'
- ],
- 'thinkTank/policyDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/thinkTank/policyDetail.js'
- ],
- 'thinkTank/thinkerDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/thinkTank/thinkerDetail.js'
- ],
- 'financial/investmentInstitution': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/financial/investmentInstitution.js'
- ],
- 'financial/investmentDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
- 'webpack/hot/only-dev-server',
- './src/js/financial/investmentDetail.js'
- ],
- }
- };
|