Hi folks,
This is my first post in this community as well as my first vite-vue project.
I've created an application instance with the createApp function according to the "Quick Start" section in Vue.js documentation.
import { createApp, ref } from 'vue'
const app = createApp({
setup() {
return {
count: ref(0)
}
}
});
app.mount('#app');
and I'm getting this log in the console
GET https://localhost:3000/node_modules/.vite/deps/vue.js?v=6516fsda net::ERR_ABORTED 504 (Gateaway Timeout)
The directory node_modules/.vite/deps/ is missing a vue.js file.
Does anyone know why?
Oh, I'm on vite 5.0.10, vue 3.3.11 and @vitejs/plugin-vue 4.5.2.
If you'd like to see a vite.config file, no problem.