How to access the entry.js file ala Vue3?
I do have a successful config with a Vu3 app with the following
This allows me to access the output of the Vue project from a PHP app thanks to the following endpoint
http://localhost:5133/main.js
---
In the Nuxt3 app, the entry point should be: http://localhost:5233/_nuxt/entry.js AFAIK
But I only have a 404 when visiting that one
This is the config of the Nuxt3 app
PS: the local app runs well if accessed directly (hence only the Nuxt app)
and the HMR script is also loaded properly from http://localhost:5233/_nuxt/@vite/client inside of the PHP app
I am mostly not sure if I'm missing some kind of additional config or using the wrong endpoint for the
This allows me to access the output of the Vue project from a PHP app thanks to the following endpoint
http://localhost:5133/main.js
---
In the Nuxt3 app, the entry point should be: http://localhost:5233/_nuxt/entry.js AFAIK
But I only have a 404 when visiting that one
This is the config of the Nuxt3 app
PS: the local app runs well if accessed directly (hence only the Nuxt app)
and the HMR script is also loaded properly from http://localhost:5233/_nuxt/@vite/client inside of the PHP app
I am mostly not sure if I'm missing some kind of additional config or using the wrong endpoint for the
entry.js file. 