Aggiunge struttura base del progetto: package.json, vite.config.js, index.html con viewport mobile, main.js, CSS globale mobile-first e .gitignore. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
111 B
JavaScript
6 lines
111 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import './style.css'
|
|
|
|
createApp(App).mount('#app')
|