|
@@ -24,8 +24,9 @@ module.exports = {
|
24
|
24
|
storagePath: (env === "development") ? path.join(__dirname, "..", "media") : "applications/audiogram/media",
|
25
|
25
|
s3Bucket: process.env.S3_BUCKETS_NAME,
|
26
|
26
|
fonts: [
|
27
|
|
- { family: "NYT Franklin", file: path.join(__dirname, "fonts", "nyt-franklin-500-normal.woff") },
|
28
|
|
- { family: "NYT Franklin Bold", file: path.join(__dirname, "fonts", "nyt-franklin-700-normal.woff") },
|
|
27
|
+ { family: "NYT Franklin", file: path.join(__dirname, "fonts", "NYTFranklinMedium.otf") },
|
|
28
|
+ { family: "NYT Franklin Light", file: path.join(__dirname, "fonts", "NYTFranklinLight.otf") },
|
|
29
|
+ { family: "NYT Franklin Bold", file: path.join(__dirname, "fonts", "NYTFranklinBold.otf") },
|
29
|
30
|
{ family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Regular.ttf") },
|
30
|
31
|
{ family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Light.ttf"), weight: 300 },
|
31
|
32
|
{ family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Bold.ttf"), weight: "bold" },
|
|
@@ -33,5 +34,5 @@ module.exports = {
|
33
|
34
|
{ family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-BoldItalic.ttf"), weight: "bold", style: "italic" }
|
34
|
35
|
],
|
35
|
36
|
redisHost: process.env.REDIS_URI,
|
36
|
|
- worker: (env === "development") ? true : false
|
|
37
|
+ worker: (env === "development") ? false : true
|
37
|
38
|
};
|