Error production nuxt SSR
[issue link]Hello everyone !!
I have a problem, i am using nuxt with SSR but when a try test my application to browser this doesn’t answer correctly. From browser is the next.
ERR_CONNECTION_REFUSED
My package.json is:
{ "name": "example", "version": "1.0.0", "description": "Nuxt.js project", "author": "", "private": true, "scripts": { "dev": "nuxt", "build": "nuxt build", "start": "nuxt start", "generate": "nuxt generate", "lint": "eslint --ext .js,.vue --ignore-path .gitignore .", "precommit": "npm run lint" }, "dependencies": { "cross-env": "^5.1.4", "express": "^4.16.3", "nuxt": "^1.0.0" }, "devDependencies": { "babel-eslint": "^8.2.1", "eslint": "^4.15.0", "eslint-friendly-formatter": "^3.0.0", "eslint-loader": "^1.7.1", "eslint-plugin-vue": "^4.0.0" } } ~ ~
Any ideas??