Configuration
The configuration for the InStore framework.
Configuration Object
Configuration Structure
Field
Type
Description
AuthToken
string
the store's authorization token provided in the setup file
Theme
string | ThemeModule
a string reference to an official InStore theme, or a require reference to a non-published theme
Example Configuration
game.ServerStorage.InStoreConfig
return {
AuthToken = 'your-auth-token',
Theme = 'default'
}
return {
AuthToken = 'your-auth-token',
Theme = require(12345678)
}
Last updated
Was this helpful?