Initial commit

This commit is contained in:
tofu
2026-03-02 23:49:35 +05:00
commit 72b94fc682
42 changed files with 793 additions and 0 deletions

17
config/assets.js Normal file
View File

@@ -0,0 +1,17 @@
import * as assets from "hanami-assets";
// Assets are managed by esbuild (https://esbuild.github.io), and can be
// customized below.
//
// Learn more at https://guides.hanamirb.org/assets/customization/.
await assets.run({
esbuildOptionsFn: (args, esbuildOptions) => {
// Customize your `esbuildOptions` here.
//
// Use the `args.watch` boolean as a condition to apply diffierent options
// when running `hanami assets watch` vs `hanami assets compile`.
return esbuildOptions;
},
});