6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
|
|
import { defineConfig } from "@vue/cli-service";
|
||
|
|
export default defineConfig({
|
||
|
|
transpileDependencies: true,
|
||
|
|
lintOnSave: false, // 关闭ESLint检查
|
||
|
|
});
|