this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add ID for manifest

+7 -2
+1
.env
··· 1 1 VITE_CLIENT_NAME=Phanpy 2 + VITE_CLIENT_ID=social.phanpy 2 3 VITE_WEBSITE=https://phanpy.social
+6 -2
vite.config.js
··· 9 9 import removeConsole from 'vite-plugin-remove-console'; 10 10 11 11 const { NODE_ENV } = process.env; 12 - const { VITE_CLIENT_NAME: CLIENT_NAME, VITE_APP_ERROR_LOGGING: ERROR_LOGGING } = 13 - loadEnv('production', process.cwd()); 12 + const { 13 + VITE_CLIENT_NAME: CLIENT_NAME, 14 + VITE_CLIENT_ID: CLIENT_ID, 15 + VITE_APP_ERROR_LOGGING: ERROR_LOGGING, 16 + } = loadEnv('production', process.cwd()); 14 17 15 18 const now = new Date(); 16 19 const commitHash = execSync('git rev-parse --short HEAD').toString().trim(); ··· 51 54 ]), 52 55 VitePWA({ 53 56 manifest: { 57 + id: CLIENT_ID, 54 58 name: CLIENT_NAME, 55 59 short_name: CLIENT_NAME, 56 60 description: 'Minimalistic opinionated Mastodon web client',