We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db9dd48 commit c4305dbCopy full SHA for c4305db
index.js
@@ -67,6 +67,11 @@ module.exports = {
67
throw new SilentError("This version of ember-cli-fastboot requires a newer version of broccoli-asset-rev");
68
}
69
70
+ // Prevent fingerprinting node_modules
71
+ app.options.fingerprint = app.options.fingerprint || {};
72
+ app.options.fingerprint.exclude = app.options.fingerprint.exclude || [];
73
+ app.options.fingerprint.exclude.push('node_modules/');
74
+
75
// set autoRun to false since we will conditionally include creating app when app files
76
// is eval'd in app-boot
77
app.options.autoRun = false;
0 commit comments