Skip to content

Commit

Permalink
Merge pull request #49 from segunolalive/bug/unresolved-extensions
Browse files Browse the repository at this point in the history
fix unresolved extensions
  • Loading branch information
segunolalive committed Nov 14, 2017
2 parents bdad36c + a2a3cb8 commit 3c92451
Show file tree
Hide file tree
Showing 20 changed files with 9 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions webpack.dev.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ module.exports = {
'process.env': {
NODE_ENV: JSON.stringify('development')
},
GOOGLE_CLIENT_SECRET: JSON.stringify('VenazYqo1V-41a8pAocf7a9H'),
GOOGLE_CLIENT_ID: JSON.stringify('701806023399-vgqondt26qh10vcuei77r7nsbcd8oa8k.apps.googleusercontent.com')
GOOGLE_CLIENT_ID: JSON.stringify('701806023399-vgqondt26qh10vcuei77r7' +
'nsbcd8oa8k.apps.googleusercontent.com')
})
],
};
14 changes: 7 additions & 7 deletions webpack.prod.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ module.exports = {
warnings: false
}
}),
// new webpack.DefinePlugin({
// 'process.env': {
// NODE_ENV: JSON.stringify('production')
// },
// GOOGLE_CLIENT_SECRET: JSON.stringify('VenazYqo1V-41a8pAocf7a9H'),
// GOOGLE_CLIENT_ID: JSON.stringify('701806023399-vgqondt26qh10vcuei77r7nsbcd8oa8k.apps.googleusercontent.com')
// })
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
},
GOOGLE_CLIENT_ID: JSON.stringify('701806023399-vgqondt26qh10vcuei77r7' +
'nsbcd8oa8k.apps.googleusercontent.com')
})
],
};

0 comments on commit 3c92451

Please sign in to comment.