tangled
alpha
login
or
join now
owdproject.org
/
app-atproto
1
fork
atom
AT Protocol login app for Open Web Desktop
1
fork
atom
overview
issues
pulls
pipelines
refactor: Rename module and plugin, move config to /runtime
dxlliv
10 months ago
e2dcb858
5b96e394
+3
-3
3 changed files
expand all
collapse all
unified
split
module.ts
runtime
owd.config.ts
plugin.ts
index.ts
module.ts
+2
-2
owd.config.ts
runtime/owd.config.ts
···
9
9
icon: "weui:at-filled",
10
10
windows: {
11
11
account: {
12
12
-
component: () => import('./runtime/components/Window/WindowAtprotoAccount.vue'),
12
12
+
component: () => import('./components/Window/WindowAtprotoAccount.vue'),
13
13
resizable: false,
14
14
size: {
15
15
width: 400,
···
32
32
app.openWindow("account")
33
33
}
34
34
},
35
35
-
}
35
35
+
}
+1
-1
runtime/plugin/index.ts
runtime/plugin.ts
···
1
1
import {defineNuxtPlugin} from "nuxt/app"
2
2
import {defineDesktopApp} from "@owdproject/core/runtime/utils/utilDesktop"
3
3
-
import configAppAtproto from '../../owd.config'
3
3
+
import configAppAtproto from './owd.config'
4
4
5
5
export default defineNuxtPlugin((nuxtApp) => {
6
6
nuxtApp.hook('app:created', async () => {