| 1234567891011121314 |
- import { initCustomFormatter } from '@vue/runtime-dom'
- export function initDev(): void {
- 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.`,
- )
- }
- initCustomFormatter()
- }
- }
|