Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
0 answers
62 views

Vite server was working fine in my development environment until I turned it off in terminal with Ctrl+C and added react-router-dom to my project. Upon restarting the dev server using vite dev, I am ...
Ted Sly's user avatar
-2 votes
0 answers
43 views

I'm trying to set up a project that uses: FastAPI (backend) Jinja2 templates TailwindCSS v4 Vite (for bundling) However, I'm running into multiple issues: TailwindCSS v4 isn't generating any ...
user13973948's user avatar
0 votes
0 answers
44 views

I’m working on a project in Laravel 12 using Vite, and I have a directory like resources/css/partials/ that contains several separate CSS files. Right now, Vite only compiles the files that I ...
Madhu sudan's user avatar
-5 votes
1 answer
92 views

this is my code for a vite react + ts calendar import Day from "./Day"; import style from "./Calendar.module.css"; import { useState } from "react"; import type { ...
Jakub Kowalski's user avatar
-3 votes
1 answer
58 views

Given a monorepo containing N projects, I wanted to avoid duplicating components, so I thought of creating a dependency package that only ships the components. However, if I install TailwindCSS in ...
rozsazoltan's user avatar
  • 18.2k
-6 votes
0 answers
73 views

the content is generated by unplugin-vue-router, nothing changed but git says it changed. if submit, it will report nothing changed original content is \u203C\uFE0F, but when vite build run, it will ...
Bill Billy's user avatar
2 votes
1 answer
46 views

In a React web app I have a typescript module from which I'm exporting a series of types, and I want to import some of them into my App.tsx. The module exporting the types looks like this: // ...
jaybee's user avatar
  • 1,959
0 votes
1 answer
61 views

I have a Laravel 12 project built with the Vue starter kit. By default, the project didn't have any frontend testing libraries. I want to add tests in Vitest. When I run vitest, I get the error: Error:...
TalVik99's user avatar
  • 304
0 votes
0 answers
33 views

I'm using Vite and VueJS in order to build out an application which has the main application scripts, and various plugin scripts which can be loaded in completely independently of the main application ...
Joe Simpson's user avatar
  • 2,594
Tooling
0 votes
1 replies
51 views

I’m working on a React project using Vite as the build tool. I’d like to automatically compress PNG and JPEG images when building for production, without changing the image import paths (so that ...
wxh_OSM's user avatar
  • 34
-1 votes
0 answers
34 views

ok, so in a really old angular-js app I am working on, there is a div looking like this <div ng-cloak> The context seems fine and it should work. However when running the app i dev mode (with ...
munHunger's user avatar
  • 3,117
1 vote
1 answer
117 views

I’m using Laravel + React + Vite, deployed on shared hosting. The problem is that Laravel keeps referencing old build files (e.g. old hash names in public/build/assets) even after I run npm run build ...
Fadhly Rozaq's user avatar
0 votes
1 answer
129 views

I'm working on a Vue 3 monorepo with the following structure: packages/ └── ui/ ├── src/ │ ├── components/ │ │ └── *.vue │ └── assets/ │ └── tailwind.css └── ...
Amin's user avatar
  • 397
0 votes
0 answers
45 views

I'm trying to intercept REST API request using MSW, but it keeps hi-jacking static images in public folder https://mswjs.io/docs/api/is-common-asset-request/ I tried to use isCommonAssetRequest, but ...
minbarry's user avatar
0 votes
0 answers
165 views

A simple PWA works well in Chrome / Android, but if it loses focus by opening another app, and you bring focus back to the pwa, this line above "home" appears. The same thing happens when ...
twharmon's user avatar
  • 3,790
0 votes
0 answers
38 views

I am building an electron app with preact + typescript with vite tool. below is my vite config import { resolve } from 'path' import obfuscatorPlugin from "vite-plugin-javascript-obfuscator";...
Nikunj Guna's user avatar
0 votes
0 answers
27 views

version my code is using v8.13.1 of mui/x-data-grid with typescript Scenario/Outcome I am trying to have both an inline button with each row that will filter the frontend table and call the api to ...
Mark OReilly's user avatar
-1 votes
1 answer
99 views

I'm having a strange performance problem in my React + Vite application. Everything works well and quickly during development mode (npm run dev). Also, when building the project itself (npm run build) ...
Raul Chiarella's user avatar
0 votes
2 answers
119 views

I’ve built a React project using Vite, and I’m working on improving SEO and link previews. I’m using React Helmet to dynamically update the meta title and description based on the current route. When ...
nandyala Dinesh's user avatar
0 votes
0 answers
27 views

I’m using a MacBook Pro and I’m trying to install Tailwind, but it’s not working. When I run: npm install tailwindcss @tailwindcss/postcss postcss npx tailwindcss init -p I get the following error: ...
Blanc18's user avatar
-3 votes
1 answer
123 views

What I want to set up in .\routes\web.php is something like Route::resource('/main', CallController::class); So, if user goes to www.sitename.com/, the index of CallController should be executed and ...
Andrii's Quest's user avatar
2 votes
1 answer
214 views

So I'm trying to do a project in Nuxt 4, and I got a problem when I try to edit any CSS element. It just crashes to 500 Cannot redefine property: _path I tried changing node version because I found ...
Tin's user avatar
  • 25
1 vote
1 answer
164 views

I'm using Tailwind CSS with React and Vite. I noticed that I have to manually add cursor-pointer to <a> and <button> elements for the pointer cursor to appear. I thought Tailwind would ...
Pawan Saini's user avatar
-1 votes
1 answer
44 views

I’m deploying to Deno Deploy, and I noticed that the generated build artifacts grows with each buld. it was ~101 MB, now it is 150 MB. my actual assets are less than 1 MB. I use Deno + Vite + React (...
Arseniy-II's user avatar
  • 9,359
0 votes
0 answers
29 views

I have a react+vite client and an express server in a single repo. The setup looks like this: package.json { "name": "lava-sample-bot", "private": true, "...
netimen's user avatar
  • 4,496

1
2 3 4 5
140