-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack-helpers.js
62 lines (59 loc) · 1.33 KB
/
webpack-helpers.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const path = require("path");
function resolvePath(p) {
return path.resolve(__dirname, p);
}
function createThemeConfig(theme, themePath) {
return {
mode: "production",
entry: {
index: [themePath],
},
output: {
path: resolvePath(`.build/uv-assets/themes/${theme}`),
publicPath: `/uv-assets/themes/${theme}`,
},
resolve: {
extensions: [".less", ".css"],
},
module: {
rules: [
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.less$/,
use: [
{
loader: "css-loader",
},
{
loader: "less-loader",
options: {
lessOptions: {
strictMath: true,
},
additionalData: '@theme: "uv-en-gb-theme";', // This should be unused.
},
},
],
},
{
test: /\.(png|jpg|gif|svg)$/i,
use: [
{
loader: "url-loader",
options: {
limit: 8192,
},
},
],
},
],
},
};
}
module.exports = {
resolvePath: resolvePath,
createThemeConfig: createThemeConfig,
};