ap-ssg
Version:
A fast, modular, SEO-optimized static site generator that minifies CSS, JS, and HTML for improved performance. It also supports JSON-LD, sitemap generation, and more, making it ideal for production-ready websites.
35 lines (33 loc) • 989 B
JavaScript
const configObj = {
mode: "development",
websiteName: "Example Website",
websiteDescription: "Example website description",
productionURL: "https://example.com",
developmentURL: "http://localhost:63342/ap-ssg/build",
metaTitleTemplate: "%title - %siteName", // default is %title
themeColor: "#3d0665", // default is black
websiteLang: "en-us", // default is en-US
autoImgAlt: false,
organization: {},
integrations: {
googleAnalytics: "",
bingWebmasters: "",
googleWebmasters: "",
hotjarAnalytics: "",
googleTagManager: "",
facebookPixel: "",
microsoftClarity: "",
},
pwa: {
enabled: true,
description: "Your pwa description",
short_name: "Example",
htmlFiles: ["index.html"],
start_url: "/index.html",
display: "standalone",
background_color: "#ffffff",
theme_color: "#3d0665",
orientation: "portrait",
},
};
module.exports = JSON.stringify(configObj, null, 2);