mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
import '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
|
|
}
|
|
}
|