Add API Server (Go/PocketBase), Web App (Go BFF + Vue), Fly App (Flutter/DJI MSDK), Adobe Plugin, and Docker/Docker AIO deployment configs. Design assets and build artifacts are gitignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import "./style.css";
|
|
import "./theme";
|
|
|
|
createApp(App).mount("#app");
|