import { createApp } from 'vue'; import './style.css'; import App from './App.vue'; import router from './router'; import { createPinia } from 'pinia'; const pinia = createPinia(); const app = createApp(App); app.use(pinia); app.use(router); app.config.globalProperties.$hcaptchaSitekey = import.meta.env.VITE_HCAPTCHA_SITEKEY; app.mount('#app');