소개
안녕하세여
게시글
질문&답변
font-weight가 왜 적용이 안될까요?
settings.json{ "editor.tabSize": 2, "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "files.associations": { "*.css": "tailwindcss" }, "editor.quickSuggestions": { "strings": "on" } }tailwind.config.js/** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{html,js}"], theme: { extend: {}, }, plugins: [], }; snippets Spacing Tailwind CSS styling issue 해당 링크는 404 뜨네요
- 0
- 2
- 45
질문&답변
unplugin-vue-router 가 안되네요.
index.js에 다음 추가하니까 되네요. +import { routes } from 'vue-router/auto-routes' createRouter({ history: createWebHistory(), // pass the generated routes written by the plugin 🤖 + routes, })
- 0
- 2
- 48