Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

How to fix CSS & JS not loading issue in cPanel laravel

CSS & JS not loading issue because of server cache
HTML/PHP
	+ <script src="js/main.js?v=1213254325"></script>
		+ 1213254325 can change into any value
Laravel
	+ webpack.mix.js
		mix.js('resources/js/main.js','public/js').version();
	+ npm run watch
    + add below code to blade file 
		<script src="{{ mix('js/main.js') }}"></script>
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript get keycode from char 
Javascript :: get the difference between two dates js 
Javascript :: javascript check if elements of one array are in another 
Javascript :: remove milliseconds from datetime js 
Javascript :: jquery fade opacity 
Javascript :: flutter circularprogressindicator 
Javascript :: ajax load spesific element from another page 
Javascript :: Jspinner max and min value 
Javascript :: how to get array from items quantity 
Javascript :: google maps init map 
Javascript :: how to make slide js in owl carousel auto 
Javascript :: nodemailer custom font 
Javascript :: ffmpeg convert mp4 to avi 
Javascript :: last element of an array javascript 
Javascript :: js open window in new tab 
Javascript :: code for adding new elements in javascriipt js 
Javascript :: isset js 
Javascript :: get span text jquery 
Javascript :: Javascript convert html entity to string 
Javascript :: js docstring example 
Javascript :: js find first line break in string 
Javascript :: div click outside to hide javascript 
Javascript :: react-select dropdown open inside modal 
Javascript :: how to save cookie in JavaScript 
Javascript :: find only duplicate data javascript object 
Javascript :: difference between type and method in ajax 
Javascript :: jquery addeventlistener 
Javascript :: first letter tuUppercase 
Javascript :: copy dict js 
Javascript :: best javascript ide 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =