hangwin--mcp-chrome
8 行
165 B
TypeScript
8 行
165 B
TypeScript
import { createApp } from 'vue';
|
|
import App from './App.vue';
|
|
|
|
// Tailwind first, then custom tokens
|
|
import '../styles/tailwind.css';
|
|
|
|
createApp(App).mount('#app');
|