Update favicon and add PWA

This commit is contained in:
2023-10-30 17:39:35 -04:00
parent 027609d8fa
commit e37998f188
45 changed files with 2540 additions and 72 deletions

17
src-pwa/.eslintrc.js Normal file
View File

@@ -0,0 +1,17 @@
const { resolve } = require('path');
module.exports = {
parserOptions: {
project: resolve(__dirname, './tsconfig.json'),
},
overrides: [
{
files: ['custom-service-worker.ts'],
env: {
serviceworker: true,
},
},
],
};