From 8e1c34cd673e2c12e3bbd63153d7875692cc513c Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 6 Oct 2022 14:42:33 -0700 Subject: [PATCH] Update src/compiler/compile/index.ts --- src/compiler/compile/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compile/index.ts b/src/compiler/compile/index.ts index 41f6b30956..ceae02a1f0 100644 --- a/src/compiler/compile/index.ts +++ b/src/compiler/compile/index.ts @@ -86,7 +86,7 @@ function validate_options(options: CompileOptions, warnings: Warning[]) { if (css === true || css === false) { options.css = css === true ? 'injected' : 'external'; - const message = `options.css as a boolean is deprecated. Use "${options.css}" instead of ${css}.`; + const message = `options.css as a boolean is deprecated. Use '${options.css}' instead of ${css}.`; warnings.push({ code: 'options-css-boolean-deprecated', message,