diff options
| author | Pitu <[email protected]> | 2019-03-15 07:34:19 +0000 |
|---|---|---|
| committer | Pitu <[email protected]> | 2019-03-15 07:34:19 +0000 |
| commit | d7745aff40104c8b7104f6a56ff8d7a9186dc10d (patch) | |
| tree | b30ab9967c5ce1cbda209f1cbe9be81567ba985f /src | |
| parent | No need for this (diff) | |
| download | host.fuwn.me-d7745aff40104c8b7104f6a56ff8d7a9186dc10d.tar.xz host.fuwn.me-d7745aff40104c8b7104f6a56ff8d7a9186dc10d.zip | |
Turns out we were using the wrong cookieparser
Diffstat (limited to 'src')
| -rw-r--r-- | src/site/store/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/site/store/index.js b/src/site/store/index.js index 19ab0ae..6a05622 100644 --- a/src/site/store/index.js +++ b/src/site/store/index.js @@ -1,7 +1,7 @@ import Vue from 'vue'; import axios from 'axios'; -const cookieparser = process.server ? require('cookie-parser') : null; +const cookieparser = process.server ? require('cookieparser') : null; export const state = () => ({ loggedIn: false, |