这个报错是什么意思:(node:8768) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field module resolution of the package at C:\Users\islin\Desktop\Develop\uni-preset-vue-vite\node_modules\vuex\package.json. Update this package.json to use a subpath pattern like "./*". (Use `node --trace-deprecation ...` to show where the warning was created)
时间: 2023-08-04 22:04:45 浏览: 630
util_format&inspect.pdf
这个报错是在使用 vuex 模块时出现的,它是一个关于文件路径映射的警告。警告信息中提到了 "exports" 字段模块解析中的文件夹映射 "./" 已经被弃用。建议你更新 vuex 的 package.json 文件,使用类似 "./*" 的子路径模式来替代它。如果想要查看警告的具体位置,可以使用 `node --trace-deprecation ...` 命令来显示。
阅读全文