mirror of
https://github.com/Tencent/WeKnora.git
synced 2026-06-04 13:30:32 +08:00
13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
App({
|
|
onLaunch() {
|
|
const settings = wx.getStorageSync("weknora_settings");
|
|
if (!settings) {
|
|
wx.setStorageSync("weknora_settings", {
|
|
baseUrl: "http://localhost:8080",
|
|
apiKey: "",
|
|
selectedKnowledgeBaseId: ""
|
|
});
|
|
}
|
|
}
|
|
});
|