import { createApp } from 'vue' import './style.css' import App from './App.vue' /** * This entrypoint is only used when running the dev server and it's the entrypoint for the * web app that you can open in the browser */ createApp(App).mount('#app')