27 lines
675 B
JavaScript
27 lines
675 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
"posthtml-favicons": {
|
|
outDir: "./dist/browser/",
|
|
configuration: {
|
|
appName: "tlater.net",
|
|
appShortName: "tlater.net",
|
|
appDescription: "tlater's home page",
|
|
developerName: "Tristan Daniël Maat",
|
|
developerURL: "https://tlater.net",
|
|
dir: "auto",
|
|
lang: "en-US",
|
|
background: "#0f0f0f",
|
|
theme_color: "#991dce",
|
|
appleStatusBarStyle: "black-translucent",
|
|
display: "browser",
|
|
orientation: "any",
|
|
start_url: "https://tlater.net",
|
|
version: "1.0",
|
|
icons: {
|
|
favicons: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|