ember-simple-auth-auth0
Version:
ember-simple-auth addon for Auth0 + Lock.js.
26 lines (23 loc) • 545 B
JavaScript
;
const webpack = require('webpack');
module.exports = {
name: 'ember-simple-auth-auth0',
options: {
babel: {
plugins: [ require.resolve('ember-auto-import/babel-plugin') ]
},
autoImport:{
webpack: {
performance: {
maxEntrypointSize: 1048576, // 1 MiB
maxAssetSize: 1048576
},
plugins: [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
})
]
}
}
}
};