Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

app.js 375 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  1. import Application from '@ember/application';
  2. import Resolver from './resolver';
  3. import loadInitializers from 'ember-load-initializers';
  4. import config from './config/environment';
  5. const App = Application.extend({
  6. modulePrefix: config.modulePrefix,
  7. podModulePrefix: config.podModulePrefix,
  8. Resolver
  9. });
  10. loadInitializers(App, config.modulePrefix);
  11. export default App;
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...