mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-09 18:37:02 +00:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
import dotenv from "dotenv"
|
|
import {defineConfig, minimalPreset as preset} from "@vite-pwa/assets-generator/config"
|
|
|
|
dotenv.config({path: ".env"})
|
|
dotenv.config({path: ".env.template"})
|
|
|
|
export default defineConfig({
|
|
preset,
|
|
images: [process.env.VITE_PLATFORM_LOGO],
|
|
})
|