I'm new to javascript development and I have a real project here. Let me describe:
- There is a project, an Express (Node.js) server that has a /public/app folder
- There is another project, a Vue.js app that has a /dist folder
- In the Express /public/app folder is copypasted vue.js application (copied from another project from /dist folder)
- Vue.js app runs at http://localhost:3000/app/#/
I've added some console.log() commands into a different files/places in a vue.js app code, for example:
app.ts
...
import {store} from './store/store';
import {isBoolean} from 'util';
console.log('APP');
let router = new VueRouter({
routes: [
{ path: '/', component: WelcomeComponent },
...
or in component:
...
import * as common from '../../../store/common';
import * as country from '../../../store/country';
console.log('COMPONENT');
@Component({
template: require('./template.html'),
components: {
'layout': LayoutContent2,
...
and so on. But none of the console.log() messages are displayed in a browser console. Im sure that an app is builded and copied correctly. So why can't I see the messages in console?