mirror of
https://github.com/khairul169/launcher.git
synced 2025-04-28 16:49:37 +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: "#1b1e2b",
|
|
background_color: "#1b1e2b",
|
|
display: "standalone",
|
|
},
|
|
}),
|
|
],
|
|
});
|