-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaucet.config.js
More file actions
37 lines (31 loc) · 904 Bytes
/
faucet.config.js
File metadata and controls
37 lines (31 loc) · 904 Bytes
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
module.exports = {
js: [{
source: "./app/assets/javascripts/application.js",
target: "./public/assets/javascripts/application.js",
format: "esm"
}],
sass: [{
source: "./app/assets/stylesheets/application.scss",
target: "./public/assets/stylesheets/application.css"
}],
static: [{
source: "@openfonts/titillium-web_latin/files/titillium-web-latin-400.woff2",
target: "./public/assets/fonts/titillium-web-regular.woff2"
}, {
source: "@openfonts/titillium-web_latin/files/titillium-web-latin-700.woff2",
target: "./public/assets/fonts/titillium-web-bold.woff2"
}],
images: [{
source: "./app/assets/images",
target: "./public/assets/images"
}],
manifest: {
target: "./public/assets/manifest.json",
key: "short",
webRoot: "./public"
},
watchDirs: ["./app/assets"],
plugins: [
require("faucet-pipeline-images")
]
};