Skip to content

Commit

Permalink
style: updated
Browse files Browse the repository at this point in the history
Signed-off-by: Neko Ayaka <neko@ayaka.moe>
  • Loading branch information
nekomeowww committed Mar 4, 2025
1 parent b75b03a commit c6ae099
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 26 deletions.
Binary file modified apps/stage-web/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/stage-web/public/maskable_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/stage-web/public/maskable_icon_x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/stage-web/public/maskable_icon_x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/stage-web/public/maskable_icon_x384.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/stage-web/public/maskable_icon_x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 0 additions & 21 deletions apps/stage-web/public/site.webmanifest

This file was deleted.

Binary file modified apps/stage-web/public/web-app-manifest-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/stage-web/public/web-app-manifest-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions apps/stage-web/src/constants/index.ts

This file was deleted.

35 changes: 32 additions & 3 deletions apps/stage-web/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import VueDevTools from 'vite-plugin-vue-devtools'
import Layouts from 'vite-plugin-vue-layouts'

import { exists } from '../../scripts/fs'
import { appName } from './src/constants'

export default defineConfig({
optimizeDeps: {
Expand Down Expand Up @@ -97,10 +96,40 @@ export default defineConfig({
registerType: 'autoUpdate',
includeAssets: ['favicon.svg', 'apple-touch-icon.png'],
manifest: {
name: appName,
name: 'Airi',
short_name: appName,
theme_color: '#ffffff',
theme_color: '#ffc6cb',
icons: [
{
purpose: 'maskable',
sizes: '128x128',
src: '/maskable_icon_x128.png',
type: 'image/png',
},
{
purpose: 'maskable',
sizes: '192x192',
src: '/maskable_icon_x192.png',
type: 'image/png',
},
{
purpose: 'maskable',
sizes: '384x384',
src: '/maskable_icon_x384.png',
type: 'image/png',
},
{
purpose: 'maskable',
sizes: '512x512',
src: '/maskable_icon_x512.png',
type: 'image/png',
},
{
purpose: 'maskable',
sizes: '1024x1024',
src: '/maskable_icon.png',
type: 'image/png',
},
{
src: '/web-app-manifest-192x192.png',
sizes: '192x192',
Expand Down

0 comments on commit c6ae099

Please sign in to comment.