(core) fix browser check and favicon in grist-core

Summary:
A check for old browsers and a Grist favicon were not available in
grist-core, leaving harmless but distracting errors in logs. This
adds them.

Test Plan: checked manually

Reviewers: georgegevoian

Reviewed By: georgegevoian

Subscribers: jarek

Differential Revision: https://phab.getgrist.com/D3207
This commit is contained in:
Paul Fitzpatrick
2022-01-05 16:09:37 -05:00
parent 62a6190970
commit 975eed8564
8 changed files with 73 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
const path = require('path');
module.exports = {
target: 'web',
mode: 'production',
entry: "./_build/app/client/browserCheck.js",
output: {
path: path.resolve("./static"),
filename: "browser-check.js"
},
};