mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-23 17:10:07 +00:00
fix(nuxt): decode URI components in cache driver methods (#30973)
This commit is contained in:
parent
110f1d0b2f
commit
9b20c9c327
@ -7,7 +7,7 @@ import lruCache from 'unstorage/drivers/lru-cache'
|
||||
/**
|
||||
* @param {string} item
|
||||
*/
|
||||
const normalizeFsKey = item => item.replaceAll(':', '_')
|
||||
const normalizeFsKey = item => decodeURIComponent(item.replaceAll(':', '_'))
|
||||
|
||||
/**
|
||||
* @param {{ base: string }} opts
|
||||
|
Loading…
Reference in New Issue
Block a user