vue3-yuanma/packages/vue/src/devCheck.ts

7 lines
221 B
TypeScript
Raw Normal View History

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.`
)
}