From 77c401ac0e2885d92138454ea75b5cc3071dd9c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Mon, 29 Apr 2024 22:14:53 +0200 Subject: [PATCH] Use single quotes in Astro config --- astro.config.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 9e2aff1..edf5d44 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,11 +1,11 @@ import { defineConfig } from 'astro/config'; -import node from "@astrojs/node"; +import node from '@astrojs/node'; // https://astro.build/config export default defineConfig({ output: 'server', adapter: node({ - mode: "standalone" + mode: 'standalone' }) -}); \ No newline at end of file +});