mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
32 lines
823 B
JavaScript
32 lines
823 B
JavaScript
const webpack = require('webpack')
|
|
/**
|
|
* After the next require you can use process.env to get your secrets
|
|
*/
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
require('now-env')
|
|
}
|
|
|
|
console.log({
|
|
SECRET: process.env.SECRET,
|
|
ANOTHER_SECRET: process.env.ANOTHER_SECRET,
|
|
SECRET_FAIL: process.env.SECRET_FAIL
|
|
})
|
|
|
|
/**
|
|
* If some of the envs are public, like a google maps key, but you still
|
|
* want to keep them secret from the repo, the following code will allow you
|
|
* to share some variables with the client, configured at compile time.
|
|
*/
|
|
module.exports = {
|
|
webpack: config => {
|
|
config.plugins.push(
|
|
new webpack.DefinePlugin({
|
|
'process.env.SECRET': JSON.stringify(process.env.SECRET)
|
|
})
|
|
// Same as above
|
|
// new webpack.EnvironmentPlugin(['SECRET'])
|
|
)
|
|
return config
|
|
}
|
|
}
|