La consola muestra este error en la imagen de abajo
Estoy tratando de resolver el error cors en vue.config.js pero aún no funciona
module.exports = { devServer: { proxy: 'http://localhost:3000', } }este método API de publicación de Axios
methods: { // send data async signup() { if (this.name == "" || this.email == "" || this.password == "") { return true; } else { document.querySelector("button").setAttribute("type", "button"); let result = await axios.post("http://localhost:3000/user", { name: this.name, email: this.email, password: this.password, }); if (result.status == 201) { localStorage.setItem("user-information", JSON.stringify(result.data)); this.$router.push({ name: "Home" }); } } }, },