Development vs Production build: https://vuejs.org/guide/best-practices/production-deployment.html
Jun 9, 2022
5
Level 3
How can I stop anyone from watching vuejs in devtools.
Hello i have included vuejs through cdn to my app and everything is working perfectly. i need to do following things :
- Remove this message "Vuejs is detected Open DevTools and look for the Vue panel."
- Keep this message: (Vue.js is detected on this page.Devtools inspection is not available because it's in production mode or explicitly disabled by the author.) just like laracasts has.
Any help will much appreciated.
Thanks.
Level 15
@folium That CDN is Vue 2, to get a production CDN of Vue 2 use the following. This dist is stated to be a production build according to the GitHub README for v2.6.
<script src="https://unpkg.com/vue@2/dist/vue.min.js"></script>
1 like
Please or to participate in this conversation.