After attempting to rename my modules, I encountered a perplexing error. Originally, I had a module named "speed" which I decided to change to "team". Despite updating all references accordingly, I am now facing the following error message:
Error: Missing module "speed" for path "speed/".
Old:
const store = createStore<State>({
modules: {
speed: { ... }
}
})
New:
const store = createStore<State>({
modules: {
team: { ... }
}
})
All internal structures like state, getters, actions remain unchanged within the module.
I have tried restarting my services, IDE, and computer to no avail.
The versions being used are: "webpack": "^5.40.0", "vuex": "^4.0.2", "vue": "^3.1.1", "typescript": "^4.3.4"
Strangely, the term 'speed' does not appear anywhere in my files.