单项选择题
A.module.exports ={entry:’./path/to/my/entry/file.js’,};
B.module.exports ={entry:{main:’./path/to/my/entry/file.js’,},};
C.module.exports ={entry:[’./src/file_1.js’,’./src/file_2.js’]};
D.module.exports ={entry:[app:’./src/app.js’,adminApp:’./src/adminApp.js’,],};