Fixing the login page availability
All checks were successful
Build and test backend / Build-backend (push) Successful in 2m8s
Build and test backend / Test-backend (push) Successful in 1m24s
deploy to production / deploy-frontend (push) Successful in 23s
deploy to production / deploy-backend (push) Successful in 2m20s
Build and test FrontEnd / Build-frontend (push) Successful in 20s
All checks were successful
Build and test backend / Build-backend (push) Successful in 2m8s
Build and test backend / Test-backend (push) Successful in 1m24s
deploy to production / deploy-frontend (push) Successful in 23s
deploy to production / deploy-backend (push) Successful in 2m20s
Build and test FrontEnd / Build-frontend (push) Successful in 20s
To access the login page you need login.html. Then this page loads the login.js that generate the login.vue in the div#app (with the '#app')
This commit is contained in:
parent
25fe568148
commit
9850f2145c
11
frontend/login.html
Normal file
11
frontend/login.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Clyde - Login</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type=module src="/src/login.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -3,4 +3,4 @@ import './assets/main.css'
|
||||
import { createApp } from 'vue'
|
||||
import App from './Login.vue'
|
||||
|
||||
createApp(App).mount('#login')
|
||||
createApp(App).mount('#app')
|
||||
|
Loading…
Reference in New Issue
Block a user