remove apparently ignored pwa options

This commit is contained in:
Jon Staab
2024-10-22 16:53:39 -07:00
parent 7472177f3a
commit 64dd608cc2
8 changed files with 67 additions and 625 deletions
+6 -1
View File
@@ -4,7 +4,12 @@ import {defineConfig, minimalPreset as preset} from '@vite-pwa/assets-generator/
dotenv.config({path: '.env.local'})
dotenv.config({path: '.env'})
let logoPath = process.env.VITE_PLATFORM_LOGO
if (logoPath.startsWith('https://')) {
}
export default defineConfig({
preset,
images: [process.env.VITE_PLATFORM_LOGO],
images: [logoPath],
})