-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaucet.config.js
More file actions
53 lines (52 loc) · 1.77 KB
/
Copy pathfaucet.config.js
File metadata and controls
53 lines (52 loc) · 1.77 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
"use strict";
module.exports = {
js: [{
source: "./views/index.jsx",
target: "./dist/views.js",
fingerprint: false,
format: "CommonJS",
jsx: { pragma: "createElement" }
}],
sass: [{
source: "./lib/styles/_fonts.scss",
target: "./assets/fonts.css"
}, {
source: "./lib/styles/index.scss",
target: "./assets/index.css"
}],
static: [{
source: "./node_modules/@openfonts/fira-code_all/files/fira-code-all-400.woff2",
target: "./assets/fonts/fira-code-all-400.woff2"
},{
source: "./node_modules/@openfonts/fira-code_all/files/fira-code-all-400.woff",
target: "./assets/fonts/fira-code-all-400.woff"
},{
source: "./node_modules/@openfonts/sarabun_all/files/sarabun-all-400.woff2",
target: "./assets/fonts/sarabun-all-400.woff2"
},{
source: "./node_modules/@openfonts/sarabun_all/files/sarabun-all-400.woff",
target: "./assets/fonts/sarabun-all-400.woff"
},{
source: "./node_modules/@openfonts/sarabun_all/files/sarabun-all-400-italic.woff2",
target: "./assets/fonts/sarabun-all-400-italic.woff2"
},{
source: "./node_modules/@openfonts/sarabun_all/files/sarabun-all-400-italic.woff",
target: "./assets/fonts/sarabun-all-400-italic.woff"
},{
source: "./node_modules/@openfonts/sarabun_all/files/sarabun-all-700.woff2",
target: "./assets/fonts/sarabun-all-700.woff2"
},{
source: "./node_modules/@openfonts/sarabun_all/files/sarabun-all-700.woff",
target: "./assets/fonts/sarabun-all-700.woff"
},{
source: "./node_modules/@openfonts/sarabun_all/files/sarabun-all-700-italic.woff2",
target: "./assets/fonts/sarabun-all-700-italic.woff2"
},{
source: "./node_modules/@openfonts/sarabun_all/files/sarabun-all-700-italic.woff",
target: "./assets/fonts/sarabun-all-700-italic.woff"
}],
manifest: {
target: "./assets/manifest.json",
key: "short"
}
};