vue.config.js 303 B

123456789
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. // If you want to transpile all dependencies:
  4. transpileDependencies: true,
  5. // If you selectively transpile dependencies:
  6. transpileDependencies: ["@kitware/vtk.js"],
  7. // lintOnSave: false, //关闭语法检查
  8. })