Fixed auth
This commit is contained in:
@ -8,7 +8,8 @@ require('dotenv').config();
|
||||
var definePlugin = new webpack.DefinePlugin({
|
||||
__DEV__: JSON.stringify(JSON.parse(process.env.NODE_ENV !== 'production')),
|
||||
__PRERELEASE__: JSON.stringify(JSON.parse(process.env.BUILD_PRERELEASE || 'false')),
|
||||
SLACK_REDIRECT_URI: process.env.SLACK_REDIRECT_URI,
|
||||
SLACK_REDIRECT_URI: JSON.stringify(process.env.SLACK_REDIRECT_URI),
|
||||
SLACK_KEY: JSON.stringify(process.env.SLACK_KEY),
|
||||
});
|
||||
|
||||
module.exports = {
|
||||
|
Reference in New Issue
Block a user