mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-10 10:57:04 +00:00
11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
import dotenv from 'dotenv'
|
|
import {defineConfig, minimalPreset as preset} from '@vite-pwa/assets-generator/config'
|
|
|
|
dotenv.config({path: '.env.local'})
|
|
dotenv.config({path: '.env'})
|
|
|
|
export default defineConfig({
|
|
preset,
|
|
images: [process.env.VITE_PLATFORM_LOGO],
|
|
})
|