inflearn logo
Course

Course

Instructor

ohswallow's Posts

ohswallow ohswallow

@ohswallow

Reviews Written
-
Average Rating
-

Posts 2

Q&A

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 뜨네요

Likes
0
Comments
3
Viewcount
418

Q&A

unplugin-vue-router 가 안되네요.

index.js에 다음 추가하니까 되네요. +import { routes } from 'vue-router/auto-routes' createRouter({ history: createWebHistory(), // pass the generated routes written by the plugin 🤖 + routes, })

Likes
0
Comments
2
Viewcount
293