Macrame/fe/src/main.js
Jesse Malotaux 617660c18b Removed scss styling in favor of Tailwind, more base styling added
Background images added and styled.
Also added a font family to the index.html: anaheim from bunnyfonts.
2025-02-28 11:56:27 +01:00

15 lines
273 B
JavaScript

// import './assets/jemx.scss'
import './assets/main.css'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')