Project loads white screen after updating to vue 3 #12668
Unanswered
daniimd
asked this question in
Help/Questions
Replies: 1 comment
-
bro, dont use local address... routes add redirect const routes: RouteRecordRaw[] = [
{
path: '/',
redirect: '/login' // or use index page
},
{
path: '/login',
name: 'Login',
component: () => import(/* webpackChunkName: "about" */ '../views/Login.vue'),
},
]; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Vue version
3.5.13
Link to minimal reproduction
http://localhost:8080/
Steps to reproduce
What is expected?
Return to login page
What is actually happening?
The project is loading the title and favicon, but the page is loading blank
System Info
Any additional comments?
package.json:
env.d.ts:
main.ts:
router:
If anyone knows anything or needs any more information... I had to update the old project and it required a lot of changes.
There are no errors in the console.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions