mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
0f104aa588
- Better insights and inspection for server bundle - Remove all vue related dependencies from vue-renderer package as much as possible to reduce install size of nuxt-start - Support for single file distributions (serverless) - Remove server-bundle.json and use the standard .js files for dist/server - Mitigate CALL_AND_RETRY_LAST Allocation failed errors. Most of the cases happen on JSON.parse() the part when loading bundle. (#4225, #3465, #1728, #1601, #1481) - Reduce server dist size by removing escape characters caused by JSON serialize - Faster dev reloads and production start by removing extra JSON.serialize/JSON.parse time - Less memory usage - General performance improvements and refactors
24 lines
471 B
JSON
24 lines
471 B
JSON
{
|
|
"name": "@nuxt/vue-renderer",
|
|
"version": "2.3.4",
|
|
"repository": "nuxt/nuxt.js",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/vue-renderer.js",
|
|
"dependencies": {
|
|
"@nuxt/common": "2.3.4",
|
|
"@nuxtjs/devalue": "^1.1.0",
|
|
"consola": "^2.3.0",
|
|
"fs-extra": "^7.0.1",
|
|
"lru-cache": "^5.1.1",
|
|
"vue": "^2.5.17",
|
|
"vue-meta": "^1.5.6",
|
|
"vue-server-renderer": "^2.5.17"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|