md-toy-blog
Version:
Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.
11 lines (10 loc) • 313 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
require("dotenv/config");
var blogUrlPathPrefix = process.env.MTB_BLOG_URL_PATH_PREFIX
? process.env.MTB_BLOG_URL_PATH_PREFIX
: '/';
var loadDictElement = {
instance: blogUrlPathPrefix,
};
exports.default = loadDictElement;