Roga

Results 13 comments of Roga

@OumaDennisOmondi I'm having the same issue. @ChiKaLiO PHP up to date, set up and used a project.test without port. If I run it out of my htdocs in XAMPP, it...

Just to show that styles are, in fact, being applied: --- ![image](https://user-images.githubusercontent.com/61405141/182684281-c415a128-d384-4bf2-8b11-50f1ee3dbbc2.png) ![image](https://user-images.githubusercontent.com/61405141/182684377-1032bf7f-8c72-4794-9673-a899ba84b0fa.png) --- ![image](https://user-images.githubusercontent.com/61405141/182684689-63707bfc-d935-45e3-834b-aab8add638f4.png) ![image](https://user-images.githubusercontent.com/61405141/182684661-42487f11-c73d-49c9-a4ce-0b565e46030c.png)

I use Vite. I've made the repo public, you can find it [here](https://github.com/rogadev/viu-fe). You can find the component in question in `src/lib/components/Navbar.svelte`. I agree, I believe the problem is with...

I updated `postcss.config.cjs` as shown in #1394 but the same problem occurs. ```js // postcss.config.cjs const autoprefixer = require('autoprefixer') const path = require('path') const tailwindcss = require('tailwindcss') module.exports = {...

Okay well this is interesting... When you create a Svelte project it wants you to put it in a folder. So I did that (`svelte/`). Then built my project from...

Here's a short video that explains why I feel this is an issue, not just a documentation problem: https://youtu.be/8ZXwklVjKzg TL:DNR - What if I wanted several svelte kit projects inside...

> ```js > import MapboxDirections from '@mapbox/mapbox-gl-directions/dist/mapbox-gl-directions' > import '@mapbox/mapbox-gl-directions/dist/mapbox-gl-directions.css' > ``` I really hoped this would work. Just doing this tells me that it cannot find the module. Attempting...

> Maybe you are in the wrong directory, check if you `package.json` is on your directory and run again. From my project root, I've `cd app` before running `npm install...

Still having this problem today: ``` $ npm i @mapbox/mapbox-gl-directions npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: undefined@undefined npm...

I spoke too soon. It installs without the above error tree, but doesn't seem to be there when I attempt to import it. ```js import MapboxDirections from "@mapbox/mapbox-gl-directions"; ``` `Cannot...