-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack-isomorphic-tools-configuration.js
More file actions
70 lines (68 loc) · 2.22 KB
/
webpack-isomorphic-tools-configuration.js
File metadata and controls
70 lines (68 loc) · 2.22 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
var WebpackIsomorphicToolsPlugin = require('webpack-isomorphic-tools/plugin');
module.exports = {
assets: {
styles: {
extensions: ['less','scss'],
filter: function(module, regex, options, log) {
if (options.development) {
// in development mode there's webpack "style-loader",
// so the module.name is not equal to module.name
return WebpackIsomorphicToolsPlugin.style_loader_filter(module, regex, options, log);
} else {
// in production mode there's no webpack "style-loader",
// so the module.name will be equal to the asset path
return regex.test(module.name);
}
},
path: function(module, options, log) {
if (options.development) {
// in development mode there's webpack "style-loader",
// so the module.name is not equal to module.name
return WebpackIsomorphicToolsPlugin.style_loader_path_extractor(module, options, log);
} else {
// in production mode there's no webpack "style-loader",
// so the module.name will be equal to the asset path
return module.name;
}
},
parser: function(module, options, log) {
if (options.development) {
return WebpackIsomorphicToolsPlugin.css_modules_loader_parser(module, options, log);
} else {
// in production mode there's Extract Text Loader which extracts CSS text away
return module.source;
}
}
},
//styles: {
// extensions: ['css', 'less'],
// //filter: function (module, regex, options, log) {
// // if (options.development) {
// // // in development mode there's webpack "style-loader",
// // // so the module.name is not equal to module.name
// // return WebpackIsomorphicToolsPlugin.style_loader_filter(module, regex, options, log);
// // } else {
// // // in production mode there's no webpack "style-loader",
// // // so the module.name will be equal to the asset path
// // return regex.test(module.name);
// // }
// //}
//},
images: {
extensions: ['png', 'jpg', 'gif', 'ico', 'svg'],
parser: WebpackIsomorphicToolsPlugin.url_loader_parser
},
//svg: {
// extension: 'svg',
// parser: WebpackIsomorphicToolsPlugin.url_loader_parser
//},
fonts: {
extensions: [
'woff',
'woff2',
'ttf',
'eot'
]
}
}
};