We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Semantic-UI-Ember/index.js
Line 50 in 2287f49
I've patched this locally include (app && app.options['SemanticUI']), otherwise the settings as advertised aren't picked up.
(app && app.options['SemanticUI'])
const options = (app && app.options['SemanticUI']) || {};
Example config:
# ember-cli-build.js 'use strict'; const EmberApp = require('ember-cli/lib/broccoli/ember-app'); module.exports = function(defaults) { let app = new EmberApp(defaults, { SemanticUI: { import: { css: true, javascript: false, images: false, fonts: false } } }); return app.toTree(); };
The text was updated successfully, but these errors were encountered:
+1 Just tried a fresh install and javascript: false is still loading Javascript; we have jQuery disabled so this is a blocking issue
javascript: false
Sorry, something went wrong.
fixed
No branches or pull requests
Semantic-UI-Ember/index.js
Line 50 in 2287f49
I've patched this locally include
(app && app.options['SemanticUI'])
, otherwise the settings as advertised aren't picked up.Example config:
The text was updated successfully, but these errors were encountered: