remove unused client-side manifest

This commit is contained in:
ppom 2024-03-04 12:00:00 +01:00
parent 786225b7bc
commit b6f70d6774
1 changed files with 2 additions and 31 deletions

View File

@ -30,42 +30,13 @@ export default defineConfig(({ command }) => {
// devOptions: {
// enabled: true,
// },
manifest: {
name: "Mobilizon",
short_name: "Mobilizon",
orientation: "portrait-primary",
theme_color: "#ffd599",
icons: [
{
src: "./img/icons/android-chrome-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "./img/icons/android-chrome-512x512.png",
sizes: "512x512",
type: "image/png",
},
{
src: "./img/icons/android-chrome-maskable-192x192.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable",
},
{
src: "./img/icons/android-chrome-maskable-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
],
},
manifest: false,
})
);
}
const build = {
manifest: true,
manifest: false,
outDir: path.resolve(__dirname, "priv/static"),
emptyOutDir: true,
sourcemap: true,