We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fc4861 commit dbbc2bbCopy full SHA for dbbc2bb
index.js
@@ -112,8 +112,8 @@ const preprocess = (data, text) => {
112
// get information about the component
113
let info;
114
try {
115
- // compile the component
116
- info = compile(text, { dev: true, generate: 'ssr', onwarn: () => null });
+ // get ASTs and stats for the component
+ info = compile(text, { dev: true, generate: false, onwarn: () => {} });
117
} catch ({ name, message, start }) {
118
// convert the error to an eslint message, store it, and return
119
data.messages = [
0 commit comments