forked from riasvdv/laravel-mix-critical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
43 lines (35 loc) · 1.13 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const mix = require('laravel-mix');
class Critical {
dependencies() {
this.requiresReload = `
HTML Webpack critical has been installed. Please run "npm run dev" again.
`;
return ['[email protected]'];
}
register(config) {
if (!config.urls || config.urls.length <= 0) {
throw new Error(
'You need to provide at least 1 valid template with src and dest in the urls option.'
);
}
this.config = Object.assign({
enabled: mix.inProduction(),
urls: [],
options: {},
}, config);
}
webpackPlugins() {
if (this.config.enabled) {
const HtmlCritical = require('html-critical-webpack-plugin');
const plugins = [];
this.config.urls.forEach((template) => {
plugins.push(new HtmlCritical(Object.assign({
src: template.src,
dest: template.dest,
}, this.config.options)));
});
return plugins;
}
}
}
mix.extend('critical', new Critical());