mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
## Description **What(what issue does this code solve/what feature does it add):** Add a qwik project where we can add API(s) and a frontend which will be used to review and deploy to AWS our docker containers for testing. **How(how does it solve it):** 1. Initialise a qwik project at `apps/www` ## Required Checklist: - [ ] I have added any necessary documentation and comments in my code (where appropriate) - [ ] I have added tests to make sure my code runs in all contexts ## Further comments
18 lines
588 B
TypeScript
18 lines
588 B
TypeScript
/*
|
|
* WHAT IS THIS FILE?
|
|
*
|
|
* Development entry point using only client-side modules:
|
|
* - Do not use this mode in production!
|
|
* - No SSR
|
|
* - No portion of the application is pre-rendered on the server.
|
|
* - All of the application is running eagerly in the browser.
|
|
* - More code is transferred to the browser than in SSR mode.
|
|
* - Optimizer/Serialization/Deserialization code is not exercised!
|
|
*/
|
|
import { render, type RenderOptions } from "@builder.io/qwik";
|
|
import Root from "./root";
|
|
|
|
export default function (opts: RenderOptions) {
|
|
return render(document, <Root />, opts);
|
|
}
|