devCheck.ts 221 B

123456
  1. if (__BROWSER__ && __DEV__) {
  2. console[console.info ? 'info' : 'log'](
  3. `You are running a development build of Vue.\n` +
  4. `Make sure to use the production build (*.prod.js) when deploying for production.`
  5. )
  6. }