Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Vite: Don't rebase absolute url()
  • Loading branch information
philipp-spiess committed Dec 2, 2024
commit 0b65e24b355793fb860bf59308ac4d6127439423
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Nothing yet!
### Fixed

- Ensure absolute `url()`s inside imported CSS files are not rebased when using `@tailwindcss/vite`

## [4.0.0-beta.4] - 2024-11-29

Expand Down
2 changes: 2 additions & 0 deletions packages/@tailwindcss-node/src/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ export async function rewriteUrls({
let promises: Promise<void>[] = []

function replacerForDeclaration(url: string) {
if (url[0] === '/') return url

let absoluteUrl = path.posix.join(normalizePath(base), url)
let relativeUrl = path.posix.relative(normalizePath(root), absoluteUrl)

Expand Down