mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-10 02:47:06 +00:00
11 lines
280 B
JavaScript
11 lines
280 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.template"})
|
|
|
|
export default defineConfig({
|
|
preset,
|
|
images: [process.env.VITE_PLATFORM_LOGO],
|
|
})
|