Assets

noego.config.yml
assets:
  - src/ui/resources/**
  - migrations/**

Use assets for runtime files that need to be carried into the production build even though they are not part of the TypeScript bundle.

Assets Settings

assets
A list of file or glob patterns copied into the production build output.

assets

static resources
Images, media, downloads, or other files that the app serves at runtime.
migration files
Database migration files that need to ship with the built application.
generated artifacts
Generated schemas, manifests, or other runtime files that are not imported directly by TypeScript.

assets file patterns

Asset patterns should stay narrow. Avoid broad project-root globs that copy source, test files, or node modules into the build output.

project files
src/
  ui/
    resources/
      logo.svg
      sounds/notify.mp3
migrations/
  001_create_users.sql
NoEgo

© 2025 NoEgo. All rights reserved.