skip to Main Content

TailwindCSS in Vitepress

I'm trying to get tailwind to work within markdown files rendered by vitepress. There are some sources online of how to make it work, none of which work for me. /docs directory structure: /docs/global/inputs/primary-button.md: # primary-button ## Props | Prop…

VIEW QUESTION

Reactjs – customStyles not being read

import React from 'react' const CustomButton = ({ type, title, customStyles, handleClick }) => { return ( <button className={'px-2 py-1.2 flex-1 rounded-md ${customStyles}'} > {title} </button> ) } export default CustomButton The customStyles keeps saying it's declared but not being…

VIEW QUESTION

Ubuntu – error: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'getReport') Deno+vite

I am using Ubuntu. I tray install deno-vue along this docs https://docs.deno.com/runtime/tutorials/how_to_with_npm/vue I am getting weird error. Task dev deno run -A --node-modules-dir npm:vite error: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'getReport') at isMusl (file:///home/bbabinski-a/Documents/Udemy/quasar-vite/node_modules/.deno/[email protected]/node_modules/rollup/dist/native.js:5:30) at…

VIEW QUESTION
Back To Top
Search