https://github.com/layoric/jamstacklitestream
https://github.com/layoric/jamstacklitestream
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/layoric/jamstacklitestream
- Owner: Layoric
- Created: 2022-06-22T05:56:51.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-22T08:20:34.000Z (about 4 years ago)
- Last Synced: 2025-10-11T01:46:45.249Z (9 months ago)
- Language: Vue
- Size: 159 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# .NET 6.0 SSG Vue 3 + Vite + Tailwindcss Template
[](https://vue-ssg.jamstacks.net)
[](https://vue-ssg.jamstacks.net)
> Browse [source code](https://github.com/NetCoreTemplates/vue-ssg), view live demo [vue-ssg-api.jamstacks.net](https://vue-ssg.jamstacks.net) and install with [x new](https://docs.servicestack.net/dotnet-new):
This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 `` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
```bash
$ dotnet tool install -g x
$ x new vue-ssg ProjectName
```
## Getting Started
Build Client UI & Run Dev Server
```bash
$ cd ui && npm run build:local
$ npm run dev
```
Run Server .NET Project (New Terminal)
```bash
$ cd api\ProjectName
$ dotnet watch
```
For more, see development workflow docs for
[JetBrains Rider](https://vue-ssg.jamstacks.net/posts/rider)
and
[VS Code / VS .NET](https://vue-ssg.jamstacks.net/posts/vs)
#### Use npm dev server for UI Development
- http://localhost:3000
#### `npm run build:local` to view in .NET App
- https://localhost:5001