mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import { reactive } from 'vue'
|
|
import appConfig from '#build/app.config'
|
|
|
|
const _appConfig = reactive(appConfig)
|
|
|
|
export const useAppConfig = () => _appConfig
|