7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
|
if (__BROWSER__ && __DEV__) {
|
||
|
console[console.info ? 'info' : 'log'](
|
||
|
`You are running a development build of Vue.\n` +
|
||
|
`Make sure to use the production build (*.prod.js) when deploying for production.`
|
||
|
)
|
||
|
}
|