babie
babie
Personally, I think that pros of directory-based-router equals pros of `pakcage by feature`. (cf. [package by feature のススメ](https://zenn.dev/pandanoir/articles/d74d317f2b3caf) (ja)) I don't mind using `index.tsx` instead of `page.tsx`, but I would...
I think it is a good idea. However, there is the problem of what to do if you want to create a page called `/chats/[id]/chat.island`. I think it is a...
I added an importmap test: https://github.com/babie/tauri-with-deno-fresh/blob/add-importmap-test/test-importmap.ts ```ts:importmap-test.ts import { ImportMap, resolveImportMap, resolveModuleSpecifier, } from "https://deno.land/x/[email protected]/mod.ts"; const importMap: ImportMap = { imports: { "./foo/": "./bar/", "$fresh/": "https://deno.land/x/[email protected]/", "@preact/signals": "https://esm.sh/*@preact/[email protected]", "@preact/signals-core": "https://esm.sh/*@preact/[email protected]",...
memo: parhaps because `esbuild_deno_loader` uses `args.namespace`(default: `file`) on `build.onLoad()` and `build.onResolve()` as it is. - https://esbuild.github.io/plugins/#on-load-arguments - https://esbuild.github.io/plugins/#on-resolve-arguments - https://esbuild.github.io/plugins/#namespaces