Skip to content

Commit 8e21305

Browse files
committed
feat(wc): try to make compiler options work
1 parent b11357f commit 8e21305

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

vue.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,14 @@ module.exports = {
33
devServer: {
44
port: 9000
55
}
6+
// ,
7+
// chainWebpack: config => {
8+
// // get the existing vue-loader rule and tap into its options
9+
// config.module.rule('vue-loader').tap(options => {
10+
// options.compilerOptions = {
11+
// ...(options.compilerOptions || {}), // merge existing compilerOptions, if any
12+
// isCustomElement: tag => /^x-/.test(tag)
13+
// }
14+
// })
15+
// }
616
};

0 commit comments

Comments
 (0)