Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 711 Bytes

Readme.md

File metadata and controls

28 lines (19 loc) · 711 Bytes

This template uses aspnet 8 as the backend and a vue app as the front end.

To do a quick test, go into the ClientUI folder in command line and run

cd WebApp/ClientUI
npm install
npm run dev

Then in another command window start the WebApp in dotnet

cd WebApp
dotnet run --launch-profile https

If it works you will be able to go to https://localhost:7082 and see a working page.

Published Site Url

The default published site is coded to use /template virtual path. This should be renamed (if different) or removed (if hosted at root).

Update Program.cs file's UsePathBase() call and vite.config.ts file's base property to make the changes.