feat(layout): 调整基础布局结构与样式
Some checks failed
CI/CD Pipeline / playwright (push) Successful in 4m30s
CI/CD Pipeline / build-and-deploy (push) Has been cancelled

This commit is contained in:
严浩
2025-10-23 23:06:37 +08:00
parent 51ae1ad017
commit 7d2d4675fc
8 changed files with 8 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
import type { PluginOption } from 'vite';
import checker from 'vite-plugin-checker';
export default [
// https://vite-plugin-checker.netlify.app/introduction/introduction.html
checker({
eslint: {
lintCommand: 'eslint "./src/**/*.{js,jsx,ts,tsx,vue}"',
useFlatConfig: true,
},
vueTsc: true,
overlay: {
initialIsOpen: false,
},
terminal: true,
enableBuild: true,
// XXX: pnpm add vls vti -D
}),
] satisfies PluginOption;