lr_boilerplate/config.lua

24 lines
497 B
Lua
Raw Normal View History

2023-12-05 13:55:38 +07:00
Config = {}
2024-01-02 10:50:35 +07:00
Config.UISetting = {
locale = {}
}
--Dont touch this
2023-12-10 04:48:31 +07:00
Config.EnableModules = {
2023-12-13 00:21:40 +07:00
["Newbie"] = {
enabled = true,
client = true, -- enable client side
2024-01-02 10:50:35 +07:00
priority = 1, -- 1 : init on start | 2 : init on player loaded
2023-12-13 00:21:40 +07:00
},
["Test"] = {
enabled = true,
priority = 2, -- 1 : init on start | 2 : init on player loaded
},
2023-12-10 04:48:31 +07:00
}
Config.Debug = true
2023-12-11 14:13:07 +07:00
Config.Nui = false
2023-12-11 15:06:29 +07:00
Config.Dev = false
2024-01-02 10:50:35 +07:00
Config.Framework = "custom" -- "qb" | "esx" | "custom"
Config.ClientLazyLoad = false