rsnext/examples/with-now-env/next.config.js
2019-06-28 15:14:56 -07:00

10 lines
158 B
JavaScript

console.log({
SECRET: process.env.SECRET,
ANOTHER_SECRET: process.env.ANOTHER_SECRET
})
module.exports = {
env: {
SECRET: process.env.SECRET
}
}