2021-02-25 04:59:38 +08:00
|
|
|
import { initCustomFormatter } from '@vue/runtime-dom'
|
2020-07-17 06:18:52 +08:00
|
|
|
|
2024-08-08 23:05:21 +08:00
|
|
|
export function initDev(): void {
|
2020-07-17 06:18:52 +08:00
|
|
|
if (__BROWSER__) {
|
2020-11-07 04:07:35 +08:00
|
|
|
if (!__ESM_BUNDLER__) {
|
|
|
|
console.info(
|
|
|
|
`You are running a development build of Vue.\n` +
|
|
|
|
`Make sure to use the production build (*.prod.js) when deploying for production.`,
|
|
|
|
)
|
|
|
|
}
|
2020-10-13 23:50:09 +08:00
|
|
|
|
|
|
|
initCustomFormatter()
|
2020-07-17 06:18:52 +08:00
|
|
|
}
|
|
|
|
}
|