dev.ts 358 B

1234567891011121314
  1. import { initCustomFormatter } from '@vue/runtime-dom'
  2. export function initDev(): void {
  3. if (__BROWSER__) {
  4. if (!__ESM_BUNDLER__) {
  5. console.info(
  6. `You are running a development build of Vue.\n` +
  7. `Make sure to use the production build (*.prod.js) when deploying for production.`,
  8. )
  9. }
  10. initCustomFormatter()
  11. }
  12. }