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) {