mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-18 01:36:37 +08:00
7 lines
193 B
TypeScript
Executable File
7 lines
193 B
TypeScript
Executable File
import VueDevTools from 'vite-plugin-vue-devtools'
|
|
|
|
export default function createDevtools(env) {
|
|
const { VITE_OPEN_DEVTOOLS } = env
|
|
return VITE_OPEN_DEVTOOLS === 'true' && VueDevTools()
|
|
}
|