Skip to content

Commit

Permalink
chore: improve manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Pkcarreno committed Jun 5, 2024
1 parent 18ab8cd commit 8d9f71f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,23 @@ export default defineConfig(({ mode }) => {
manifest: {
name: 'JS on Demand',
short_name: 'JSOD',
id: 'com.pkcarreno.jsod',
start_url: `${process.env.BASE_URL}/`,
display: 'standalone',
background_color: '#FDFEFB',
theme_color: '#fdfefb',
description: 'Write, run, and share JavaScript code instantly.',
prefer_related_applications: false,
categories: ['productivity', 'utilities'],
orientation: 'portrait',
dir: 'ltr',
shortcuts: [
{
name: 'New Editor',
url: `${process.env.BASE_URL}/`,
description: 'Open new editor',
},
],
screenshots: [
{
src: `${process.env.BASE_URL}/desktop-1.jpeg`,
Expand Down

0 comments on commit 8d9f71f

Please sign in to comment.