mirror of
https://github.com/langgenius/dify.git
synced 2026-04-01 03:01:11 -04:00
16 lines
238 B
TypeScript
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,
|
|
},
|
|
})
|