25 lines
612 B
JavaScript
Executable File
25 lines
612 B
JavaScript
Executable File
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true
|
|
})
|
|
|
|
// module.exports = {
|
|
// chainWebpack: config => {
|
|
// config.module
|
|
// .rule('vue')
|
|
// .use('vue-loader')
|
|
// .tap(options => {
|
|
// options.compilerOptions.isCustomElement = tag => tag.startsWith('el-')
|
|
// return options
|
|
// })
|
|
//
|
|
// config.module
|
|
// .rule('ts')
|
|
// .use('ts-loader')
|
|
// .tap(options => {
|
|
// options.appendTsSuffixTo = [/\.vue$/]
|
|
// return options
|
|
// })
|
|
// }
|
|
// }
|