Giter Club home page Giter Club logo

Comments (2)

RobinMalfait avatar RobinMalfait commented on June 18, 2024

Hey!

In the VideoOverlay.tsx file you have the following code:

<div
  className={`preview bg-[url('${previewSrc}')] absolute inset-0 z-[1] bg-cover bg-no-repeat`}
  onClick={() => {
    playPauseVideo()
  }}
></div>

Tailwind CSS itself doesn't execute your code, so it generates the bg-[url(…)] as-is (more info: https://tailwindcss.com/docs/content-configuration#dynamic-class-names). This means that it generates the following CSS:

.bg-\[url\(\'\$\{previewSrc\}\'\)\] {
  background-image: url('${previewSrc}');
}

Once that is generated, Next.js does optimizations for (background) images. In this case, it will look for url('${previewSrc}') which doesn't exist on disk. Note: this would also happen without Tailwind CSS if you used that literal string in the background-image.

To solve your issue, I would recommend to use a CSS variable instead:

  <div
-   className={`preview bg-[url('${previewSrc}')] absolute inset-0 z-[1] bg-cover bg-no-repeat`}
+   className={`preview bg-[url:var(--preview-src))] absolute inset-0 z-[1] bg-cover bg-no-repeat`}
+   style={{ '--preview-src': `url(${previewSrc})` }}
    onClick={() => {
      playPauseVideo()
    }}
  ></div>

This way, Tailwind generates the following CSS for bg-[url:var(--preview-src))]:

.bg-\[url\:var\(--preview-src\)\] {
  background-image: var(--preview-src);
}

Now you can generate the --preview-src dynamically at runtime using the style prop.

Hope this helps!

from tailwindcss.

nicitaacom avatar nicitaacom commented on June 18, 2024
Object literal may only specify known properties, and ''--preview-src'' does not exist in type 'Properties<string | number, string & {}>'.typescript(2353)
index.d.ts(1982, 9): The expected type comes from property 'style' which is declared here on type 'DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>'

image

It doen't work in way you described

It work like this

style={{ backgroundImage: `var(--preview-src, url(${previewSrc}))` }}

from tailwindcss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.