123456789101112131415161718192021222324252627282930313233 |
-
-
- var path = require("path");
-
- module.exports = {
- workingDirectory: path.join(__dirname, "..", "tmp"),
- storagePath: path.join(__dirname, "..", "media"),
- maxUploadSize: 25000000,
- fonts: [
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Regular.ttf") },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Light.ttf"), weight: 300 },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Bold.ttf"), weight: "bold" },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Italic.ttf"), style: "italic" },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-BoldItalic.ttf"), weight: "bold", style: "italic" }
- ]
- };
|