mirror of https://github.com/webpack/webpack.git
12 lines
140 B
JavaScript
12 lines
140 B
JavaScript
|
module.exports = {
|
||
|
entry: "./index",
|
||
|
stats: {
|
||
|
colors: true,
|
||
|
hash: false,
|
||
|
entrypoints: true
|
||
|
},
|
||
|
performance: {
|
||
|
hints: false
|
||
|
}
|
||
|
};
|