58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
import path from "path"
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
import react from "@vitejs/plugin-react"
|
|
import { defineConfig } from "vite"
|
|
import { VitePWA } from "vite-plugin-pwa";
|
|
|
|
// you can copy the base structure of manifest object.
|
|
const manifestForPlugIn = {
|
|
registerType: 'prompt' as const,
|
|
includeAssests: ['favicon.ico', "apple-touc-icon.png", "masked-icon.svg"],
|
|
manifest: {
|
|
name: "Freedge",
|
|
short_name: "Freedge",
|
|
description: "Freedge est une application de recettes de cuisine générée par IA",
|
|
icons: [{
|
|
src: '/assets/192.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
purpose: 'favicon'
|
|
},
|
|
{
|
|
src: '/assets/512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
purpose: 'favicon'
|
|
},
|
|
{
|
|
src: '/assets/180.png',
|
|
sizes: '180x180',
|
|
type: 'image/png',
|
|
purpose: 'apple touch icon',
|
|
},
|
|
{
|
|
src: '/assets/512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
purpose: 'any maskable',
|
|
}
|
|
],
|
|
theme_color: '#171717',
|
|
background_color: '#f0e7db',
|
|
display: "standalone",
|
|
scope: '/',
|
|
start_url: "/",
|
|
orientation: 'portrait' as const
|
|
}
|
|
}
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss(), VitePWA(manifestForPlugIn)],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
})
|