summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/core/messages.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/astro/src/core/messages.ts b/packages/astro/src/core/messages.ts
index 0bd3f0d50..2ea134ff3 100644
--- a/packages/astro/src/core/messages.ts
+++ b/packages/astro/src/core/messages.ts
@@ -146,7 +146,9 @@ export function telemetryReset() {
}
export function fsStrictWarning() {
- return yellow('⚠️ Serving with vite.server.fs.strict: false. Note that all files on your machine will be accessible to anyone on your network!')
+ return yellow(
+ '⚠️ Serving with vite.server.fs.strict: false. Note that all files on your machine will be accessible to anyone on your network!'
+ );
}
export function prerelease({ currentVersion }: { currentVersion: string }) {