@nuxtjs/component-cache
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="0.1.2"></a> | ||
## [0.1.2](https://github.com/nuxt/modules/compare/@nuxtjs/component-cache@0.1.1...@nuxtjs/component-cache@0.1.2) (2017-06-02) | ||
### Bug Fixes | ||
* **component-cache:** null ssr ([528ec4c](https://github.com/nuxt/modules/commit/528ec4c)) | ||
<a name="0.1.1"></a> | ||
@@ -8,0 +19,0 @@ ## [0.1.1](https://github.com/nuxt/modules/compare/@nuxtjs/component-cache@0.1.0...@nuxtjs/component-cache@0.1.1) (2017-06-02) |
@@ -10,4 +10,4 @@ const LRU = require('lru-cache') | ||
// Create placeholder | ||
if (typeof this.options.build.ssr !== 'object') { | ||
this.options.ssr = {} | ||
if (typeof this.options.build.ssr !== 'object' || this.options.build.ssr === null) { | ||
this.options.build.ssr = {} | ||
} | ||
@@ -14,0 +14,0 @@ |
{ | ||
"name": "@nuxtjs/component-cache", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
2294