Open cdauth opened 3 years ago
I would like to be able to specify custom options to vue-template-compiler. In particular, I need to set the whitespace option.
vue-template-compiler
whitespace
As far as I can tell, compileTemplate() has an option compilerOptions that vue-template-loader could simply hand through.
compileTemplate()
compilerOptions
vue-template-loader
For now, the following workaround worked for me:
import { compile } from "vue-template-compiler"; { test: /\.vue$/, loader: "vue-template-loader", options: { compiler: { compile: (template, options) => compile(template, { ...options, whitespace: "condense" }) } } }
I would like to be able to specify custom options to
vue-template-compiler
. In particular, I need to set thewhitespace
option.As far as I can tell,
compileTemplate()
has an optioncompilerOptions
thatvue-template-loader
could simply hand through.For now, the following workaround worked for me: