15 lines
351 B
TypeScript
Raw Normal View History

import { initCustomFormatter } from '@vue/runtime-dom'
2020-07-17 00:18:52 +02:00
export function initDev() {
if (__BROWSER__) {
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 11:50:09 -04:00
initCustomFormatter()
2020-07-17 00:18:52 +02:00
}
}