Files
dify/e2e/vite.config.ts
2026-03-29 13:40:24 +00:00

16 lines
238 B
TypeScript

import { defineConfig } from 'vite-plus'
export default defineConfig({
lint: {
options: {
typeAware: true,
typeCheck: true,
denyWarnings: true,
},
},
fmt: {
singleQuote: true,
semi: false,
},
})