mirror of https://github.com/webpack/webpack.git
9 lines
105 B
JavaScript
9 lines
105 B
JavaScript
|
module.exports = {
|
||
|
findBundle: function() {
|
||
|
return [
|
||
|
"./runtime~main.js",
|
||
|
"./main.js"
|
||
|
]
|
||
|
}
|
||
|
};
|