iacore

Results 421 comments of iacore

I forgot to edit the readme file (describing how to run the cart). Can you add that?

`onRenderContent` is best, I think. Still need to offer an option to set the output path, though. It would be nice if the API allows access to `pageContext` from other...

> Or how about using Filesytem Routing as usual? How do I generate `dist/client/feed.json` but not `dist/client/feed.json/index.html`? Also, I can't name a folder `feed.json` because vite complains about trying to...

> Vike wouldn't create an `.html` file when the content is generated with `onRenderContent()`. I need a **static** page! `onRenderContent` won't generate a JSON file, or can it? > You...

The `vite-node` method worked! Do we document the `vite-node` usage somewhere? I haven't tried `onRenderClient`. Is it strange that `onRenderClient` renders to a file on the server?

> Apologies I meant `onRenderContent()` not `onRenderClient()`. I've edited my comment (and yours). I assume you meant `onRenderHtml`. I can't find a `onRenderContent` hook. > @iacore It _will_ create a...

> This would be a pretty big change. We'd need to add another dimension to the camera (technically a z rotation, though we use z for scale), then update the...

> In Lume, components are loaded automatically in the `comp` variable. Example: I use `import Component from '../Component.tsx'`. I use a lot of functions between files too. ``` import {...

Related: https://github.com/denoland/deno/issues/8327

> this can be workaround using watch or hmr. > > 1. run `echo 'import "lume/cli.ts"' > _main.ts` on terminal. > > 2. change tasks in `deno.json` to following: I...