From 5cd0827b20e0ee3a8e22c7dd80835149a18431ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 1 Feb 2017 00:22:02 +0100 Subject: [PATCH] ~store is now an alias for the store instance --- lib/webpack/base.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/webpack/base.config.js b/lib/webpack/base.config.js index ef26c43071..017f7e99ae 100644 --- a/lib/webpack/base.config.js +++ b/lib/webpack/base.config.js @@ -36,7 +36,7 @@ export default function ({ isClient, isServer }) { 'assets': join(this.srcDir, 'assets'), // use in template with '~assets': join(this.srcDir, 'assets'), '~plugins': join(this.srcDir, 'plugins'), - '~store': join(this.srcDir, 'store'), + '~store': join(this.dir, '.nuxt/store'), '~router': join(this.dir, '.nuxt/router'), '~pages': join(this.srcDir, 'pages'), '~components': join(this.srcDir, 'components')