ember-welcome-page
Displays a nice welcome page for newly generated applications with links to resources.
Installation
ember install ember-welcome-page
<summary>Use Glint or
<template>
tag? ✨</summary>
- Update your template registry to extend this addon's. Check the Glint documentation for more information.
ts
/* types/index.d.ts */
import '@glint/environment-ember-loose';
import type EmberWelcomePageRegistry from 'ember-welcome-page/template-registry';
declare module '@glint/environment-ember-loose/registry' {
export default interface Registry extends EmberWelcomePageRegistry, /* other addon registries */ {
// local entries
}
}
- If you are using <template>
tag, you are good to go! Use the named import to consume things.
ts
/* app/components/hello-world.{gjs,gts} */
import { WelcomePage } from 'ember-welcome-page';
<template>
<WelcomePage />
</template>
Compatibility
- Ember.js v3.28 or above
- Ember CLI v3.28 or above
- Node.js v14 or above
Contributing
See the Contributing guide for details.
License
This project is licensed under the MIT License.