mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-11 03:17:02 +00:00
Fix weird dotenv error
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
import dotenv from "dotenv"
|
import {config} from "dotenv"
|
||||||
import daisyui from "daisyui"
|
import daisyui from "daisyui"
|
||||||
import themes from "daisyui/src/theming/themes"
|
import themes from "daisyui/src/theming/themes"
|
||||||
|
|
||||||
dotenv.config({path: ".env.local"})
|
config({path: ".env.local"})
|
||||||
dotenv.config({path: ".env"})
|
config({path: ".env"})
|
||||||
|
|
||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
export default {
|
export default {
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import dotenv from "dotenv"
|
import {config} from "dotenv"
|
||||||
import {defineConfig} from "vite"
|
import {defineConfig} from "vite"
|
||||||
import {SvelteKitPWA} from "@vite-pwa/sveltekit"
|
import {SvelteKitPWA} from "@vite-pwa/sveltekit"
|
||||||
import {sveltekit} from "@sveltejs/kit/vite"
|
import {sveltekit} from "@sveltejs/kit/vite"
|
||||||
import svg from "@poppanator/sveltekit-svg"
|
import svg from "@poppanator/sveltekit-svg"
|
||||||
|
|
||||||
dotenv.config({path: ".env.local"})
|
config({path: ".env.local"})
|
||||||
dotenv.config({path: ".env"})
|
config({path: ".env"})
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
server: {
|
server: {
|
||||||
|
|||||||
Reference in New Issue
Block a user