mirror of
https://github.com/khairul169/launcher.git
synced 2025-06-18 01:29:36 +07:00
31 lines
719 B
JavaScript
31 lines
719 B
JavaScript
|
import { defineConfig } from "vite";
|
||
|
import { VitePWA } from "vite-plugin-pwa";
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
VitePWA({
|
||
|
registerType: "autoUpdate",
|
||
|
manifest: {
|
||
|
name: "Eclair Launcher",
|
||
|
short_name: "Launcher",
|
||
|
start_url: "https://home.rul.sh",
|
||
|
icons: [
|
||
|
{
|
||
|
src: "/android-chrome-192x192.png",
|
||
|
sizes: "192x192",
|
||
|
type: "image/png",
|
||
|
},
|
||
|
{
|
||
|
src: "/android-chrome-512x512.png",
|
||
|
sizes: "512x512",
|
||
|
type: "image/png",
|
||
|
},
|
||
|
],
|
||
|
theme_color: "#ffffff",
|
||
|
background_color: "#ffffff",
|
||
|
display: "standalone",
|
||
|
},
|
||
|
}),
|
||
|
],
|
||
|
});
|