11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
import App from './App.uvue'
|
|
|
|
import { wsManager } from './services/websocket/websocket.uts';
|
|
import { createSSRApp } from 'vue'
|
|
export function createApp() {
|
|
const app = createSSRApp(App)
|
|
app.config.globalProperties.$ws = wsManager;
|
|
return {
|
|
app
|
|
}
|
|
} |