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