feat(extension-sdk): add tailwind vite plugin to vite config#1256
Merged
JammingBen merged 3 commits intomainfrom Sep 24, 2025
Merged
feat(extension-sdk): add tailwind vite plugin to vite config#1256JammingBen merged 3 commits intomainfrom
JammingBen merged 3 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
Adds Tailwind CSS Vite plugin integration to the extension SDK and corrects documentation import paths for the design system. This enables better Tailwind CSS support in extensions while fixing broken import references in the documentation.
- Integrates
@tailwindcss/viteplugin into the extension SDK's Vite configuration - Updates design system documentation to use correct import paths for Tailwind CSS
- Adds missing CSS file copy configuration to the design system build
Reviewed Changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| packages/extension-sdk/package.json | Adds @tailwindcss/vite dependency |
| packages/extension-sdk/index.mjs | Imports and configures Tailwind Vite plugin |
| packages/design-system/vite.config.ts | Adds defaults.css file to build output |
| packages/design-system/docs/gettingStarted/tailwindMigration.md | Fixes Tailwind CSS import path |
| packages/design-system/docs/gettingStarted/installation.md | Updates import path and removes outdated note |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
kulmann
approved these changes
Sep 24, 2025
openclouders
pushed a commit
that referenced
this pull request
Sep 24, 2025
feat(extension-sdk): add tailwind vite plugin to vite config
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This eliminates the need for each extension to do that on its own.
Also fixes the Tailwind import paths in the design-system docs and adds the missing css custom file.
refs opencloud-eu/web-extensions#208