File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ export async function compileFile(
57
57
const { errors, descriptor } = store . compiler . parse ( code , {
58
58
filename,
59
59
sourceMap : true ,
60
+ templateParseOptions : store . options ?. template ?. compilerOptions ,
60
61
} )
61
62
if ( errors . length ) {
62
63
return errors
@@ -221,8 +222,10 @@ export async function compileFile(
221
222
if ( css ) {
222
223
compiled . css = css . trim ( )
223
224
} else {
224
- compiled . css = isCE ? ( compiled . css = '/* The component style of the custom element will be compiled into the component object */' )
225
- : ( '/* No <style> tags present */' )
225
+ compiled . css = isCE
226
+ ? ( compiled . css =
227
+ '/* The component style of the custom element will be compiled into the component object */' )
228
+ : '/* No <style> tags present */'
226
229
}
227
230
228
231
if ( clientCode || ssrCode ) {
You can’t perform that action at this time.
0 commit comments