Denni
Denni
Some problem
In terminal: ``` > [email protected] start:prod /Volumes/MacData500/Test/vue/vue-hackernews-3.0 > cross-env NODE_ENV=production node server Server started at localhost:8080 [Vue warn]: Component is missing template or render function. [Vue warn]: Component is missing...
mac os: 10.15.5 node: 14.13.0 npm: 6.14.8 windows 10 node: 14.15.5 npm: 6.14.11 In this cases ok with 'npm run start:dev' and 'npm run build'. But when '~~npm start:prod~~' 'npm...
More deep tests revealed a pattern: + clone repo to shared between mac os and ubuntu folder -> 'npm i' ON LINUX + other commands on ubuntu or mac os...
$timeout( ..., 200) helped me.
Need comment this: ``` if (!app.requestSingleInstanceLock()) { app.quit() process.exit(0) } ``` )
> Maybe the following code is better. > > ```diff > - if (!app.requestSingleInstanceLock()) { > - app.quit() > - process.exit(0) > - } > ``` Indeed, allowing many instances...
The compiled application and launched through `npm run dev` get one pid. Because of this, I cannot run both the built and developed applications at the same time. @caoxiemeihao How...
If I understand correctly, then the OS generates a PID based on the application name. When assembled, the name is taken from `package.json.name`. When I run the built app and...
> I'm confused on how you are not seeing the sort/filter options. The top navigation should always have something selected. Can you give instructions on how to reproduce this? I...