We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79671b1 commit f24e605Copy full SHA for f24e605
dist/index.js
@@ -5179,7 +5179,9 @@ module.exports = {
5179
5180
const path = __nccwpck_require__(1017)
5181
5182
-const CACHE_DIR = path.resolve('..', 'cache')
+const CACHE_DIR = (typeof __NCC__ !== 'undefined')
5183
+ ? path.resolve('..', 'cache')
5184
+ : path.join(__dirname, '..', 'cache')
5185
5186
module.exports = {
5187
security: {
src/store.js
@@ -1,6 +1,8 @@
1
const path = require('path')
2
3
4
5
6
7
8
0 commit comments