Skip to content

Commit c6c8e2a

Browse files
committed
adding guidemaker
1 parent ce3c9f1 commit c6c8e2a

File tree

5 files changed

+2463
-52
lines changed

5 files changed

+2463
-52
lines changed

app/templates/application.hbs

-5
This file was deleted.

config/environment.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ module.exports = function(environment) {
55
modulePrefix: 'documentation',
66
environment,
77
rootURL: '/',
8-
locationType: 'auto',
8+
locationType: 'trailing-history',
9+
historySupportMiddleware: true,
10+
911
EmberENV: {
1012
FEATURES: {
1113
// Here you can enable experimental features on an ember canary build
@@ -20,6 +22,10 @@ module.exports = function(environment) {
2022
APP: {
2123
// Here you can pass flags/options to your application instance
2224
// when it is created
25+
},
26+
27+
'ember-meta': {
28+
description: 'Guides - Built with Guidemaker'
2329
}
2430
};
2531

ember-cli-build.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ const EmberApp = require('ember-cli/lib/broccoli/ember-app');
44

55
module.exports = function(defaults) {
66
let app = new EmberApp(defaults, {
7-
// Add options here
7+
fingerprint: {
8+
extensions: ['js', 'css', 'map']
9+
}
810
});
911

1012
// Use `app.import` to add additional libraries to the generated

0 commit comments

Comments
 (0)