Hi!
I implemented a ne Metronic theme via assets and bundles in .NET project, everything works great but have one error which I do not know to solve?
Uncaught ReferenceError: mApp is not defined
Is it something about order fo budles or something?
I have plugins bundle and js after that and this is literally all you need.
I wiil appriciate any help, thanks!
Hi,
You need to follow order from file Views/Layout/Master.cshtml, two main global js files must be included before the custom files.
<script src="/assets/plugins/global/plugins.bundle.js"></script>
<script src="/assets/js/scripts.bundle.js"></script>