mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 20:19:12 +00:00
14 lines
260 B
JavaScript
14 lines
260 B
JavaScript
require('dotenv').config()
|
|
module.exports = {
|
|
publicRuntimeConfig: {
|
|
BOT_HANDLE: process.env.BOT_HANDLE
|
|
},
|
|
webpack: config => {
|
|
// Fixes npm packages that depend on `fs` module
|
|
config.node = {
|
|
fs: 'empty'
|
|
}
|
|
|
|
return config
|
|
}
|
|
}
|