mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
client/posts: add transparency grid
Can be turned off in browsing settings.
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user