From 83b0997f83e1cf17746f9ef71197b980bc99d78e Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 6 Oct 2022 14:42:04 -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 3d47be1851..41f6b30956 100644 --- a/src/compiler/compile/index.ts +++ b/src/compiler/compile/index.ts @@ -81,7 +81,7 @@ function validate_options(options: CompileOptions, warnings: Warning[]) { } if (valid_css_values.indexOf(css) === -1) { - throw new Error(`options.css must be true, false, "injected", "external" or "none" (got '${css}')`); + throw new Error(`options.css must be true, false, 'injected', 'external', or 'none' (got '${css}')`); } if (css === true || css === false) {