I've initialised aurelia with
<body aurelia-app>
...
</body>
The getting started guide (http://aurelia.io/get-started.html) says that this will, by default, try to load up app.js
and app.html
How can I tell aurelia to load up main.js and main.html?
if I do <body aurelia-app="main">
only main.js is accessed and the view isn't shown.
When you supply a value for the
aurelia-app
attribute, Aurelia will load that module and call theconfigure
method that is exported by this module. This is explained in the documentation.Your configuration must tell Aurelia which module to load for the app root. Here is the example from the documentation:
What you're expecting to happen isn't the actual behavior. Setting the value of attribute points Aurelia to a configuration module that will point aurelia to the app root. In your case, you might want to do something like this:
index.html
src\configuration.js
And then
src\main.js
andsrc\main.html
will be loaded as you expect (well, actually it will bedist\main.js
anddist\main.html
, but the files you're editing are in thesrc
directory).