mirror of https://github.com/webpack/webpack.git
11 lines
320 B
JavaScript
11 lines
320 B
JavaScript
|
module.exports = [
|
||
|
// Invalid fetchPriority value warning
|
||
|
[
|
||
|
/`webpackFetchPriority` expected "low", "high" or "auto", but received: invalid\./
|
||
|
],
|
||
|
// Both prefetch and preload specified
|
||
|
[
|
||
|
/Both webpackPrefetch and webpackPreload are specified\. webpackPreload will take precedence for immediate loading\./
|
||
|
]
|
||
|
];
|