-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pro 6694 breakpoint preview vite ready (#9)
* Uses postcss-loader to get user project level postcss config * Loads project level postcss config only for public build * Loads new postcss plugin when breakpoint preview is enabled * Loads autoprefixer by default for apos build only
- Loading branch information
Showing
4 changed files
with
72 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# Changelog | ||
|
||
## UNRELEASED | ||
|
||
### Adds | ||
|
||
* Adds postcss supports for the new `postcss-viewport-to-container-toggle` that allows the breakpoint preview feature to work. | ||
* Loads postcss config file from project only for public builds. | ||
* Adds `autoprefixer` plugin only for apos builds. | ||
|
||
## 1.0.0-beta.1 (2024-10-31) | ||
|
||
Initial beta release. | ||
* Initial beta release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module.exports = async ({ plugins }) => { | ||
return { | ||
css: { | ||
postcss: { | ||
plugins | ||
} | ||
} | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters