• Resolved Argentum

    (@argentum)


    Hi!
    I am using your plugin and it works good. Though I have quite a lot of errors when I look at the page in dev console. Are the cached javascript and css files saved to a virtual path that looks like /min/xxxx.js and /min/xxxxx.css (there are no such directory on my server)? I got a large assortment of errors that look like this:

    [Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive. See <URL>
    /min/ef672.js:582 [Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive. See https://www.chromestatus.com/features/6662647093133312
    wheel @ /min/ef672.js:582

    Perhaps it has nothing to do with LiteSpeed cache plugin, though the aforementioned files can be opened in a tab and they are minified.

    Best wishes
    M

Viewing 1 replies (of 1 total)
  • Plugin Support qtwrk

    (@qtwrk)

    Hi,

    It’s actually in /wp-content/cache/css(js) , but rewrote by rewrite rule

    ### marker MINIFY start ###
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} ^(.*)/min/(\w+)\.(css|js)$
    RewriteCond %1/wp-content/cache/$2/$1.$2 -f
    RewriteRule min/(\w+)\.(css|js) wp-content/cache/$2/$1.$2 [L]
    </IfModule>
    ### marker MINIFY end ###

    But that could probably due to JS combine and minify , you could try disable them one by one and see how it goes.

    Best regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Minified files with path /min/’ is closed to new replies.