client/posts: add transparency grid

Can be turned off in browsing settings.
This commit is contained in:
rr-
2016-06-11 21:50:21 +02:00
parent 07603be35e
commit 56432e6089
7 changed files with 17 additions and 2 deletions

View File

@ -192,8 +192,11 @@ function bundleConfig(config) {
}
function bundleBinaryAssets() {
copyFile('./img/favicon.png', './public/img/favicon.png');
copyFile('./img/404.png', './public/img/404.png');
glob('./img/*.png', {}, (er, files) => {
for (let file of files) {
copyFile(file, path.join('./public/img/', path.basename(file)));
}
});
}
const config = getConfig();