Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/3forges/poc-qwik-cms
Could we use Qwik framewok to build markdown-based content websites ?
https://github.com/3forges/poc-qwik-cms
Last synced: 7 days ago
JSON representation
Could we use Qwik framewok to build markdown-based content websites ?
- Host: GitHub
- URL: https://github.com/3forges/poc-qwik-cms
- Owner: 3forges
- Created: 2023-08-31T23:43:52.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-01T03:01:26.000Z (over 1 year ago)
- Last Synced: 2024-04-01T16:09:30.789Z (9 months ago)
- Language: TypeScript
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.3forges.md
Awesome Lists containing this project
README
# The Qwik expermient
## Run it
```bash
pnpm i && pnpm run dev
```## Spawn it
```bash
pnpm create vite my-qwik-app --template qwik-ts
```## Notable issues
### Routing
My first goal was to find out about routing.
I stumbled upon the first difficulty here: the docs really did not give me a working fix. I just created a `./src/routes/joke/index.tsx`, but http://localhost:5276/joke/ wouldn't give me the joke page, even with a `./src/routes/joke/layout.tsx`, and a `./src/routes/layout.tsx`
I found a very interesting github issue on the subject, from Feb. 2023 :
* https://github.com/BuilderIO/qwik/issues/3142#issuecomment-1462325521
* https://github.com/ngfelixl/qwik-routing-reproduction/tree/main/src/routes
* https://github.com/ngfelixl/qwik-routing-reproductionOh I found another very, very intteresting `tsconfig.json` : https://github.com/BuilderIO/qwik/blob/26b73fa4366dc95b36e5af3b19d23d316031396c/tsconfig.json#L66