skip to Main Content

Vite + React Docker

I'm trying to run my vite+react app using the docker container, the code is running fine but unfortunately, it's not opening in localhost 3000 DockerFile FROM node:18-alpine EXPOSE 3000 WORKDIR /react-vite-app COPY package.json . RUN yarn install COPY . .…

VIEW QUESTION

Use Jquery in Laravel Vite

I get an error when try to import jquery in laravel VITE, jquery seems to be loaded in my compiled javascript: Uncaught TypeError: window.$ is not a function at dashboard:1823:12 (anonimo) @ dashboard:1823 [Violation]Forced reflow while executing JavaScript took 72ms…

VIEW QUESTION

Vite manifest not found – CPanel

I Working on project that working with laravel 9 and Vite with laravel-vite, In Dev environment all thing working fine, but in production cPanel server I has this issue Vite manifest not found at: /home/???????/cart_shop/public/build/manifest.json # With Missing Vite Manifest…

VIEW QUESTION
Back To Top
Search