import { createApp } from 'vue' import App from './App.vue' const app = createApp(App) app.config.performance = true app.mount('#root')