-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Front stack primary updates and improvements #757
Conversation
- on-demand icons auto importing - handle all available icon sets (https://icones.js.org)
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
|
- implement vue router - prepare for App.vue simplification - proper management of views and layouts - fix Tailwind CSS and prepare for overall css cleaning
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to see the PR breaking down into a few smaller ones:
- Format index.html / vite.config.mts
- Add router
- Add iconify
- Fix tailwindcss
src/main.ts
Outdated
import { i18n } from './i18n' | ||
import '@comfyorg/litegraph/style.css' | ||
import '@/assets/css/style.css' | ||
import '@/assets/css/user.css' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert the change to user.css
as it is for users to modify in the final build target to add extra rules. Importing user.css
here would cause user.css
not appear in the final build target.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copy that!
TailwindCSS setup is done in #768. You can now safely proceed with rest of the PRs with tailwind classes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This PR hardcoded the frontend to only work as a webroot, ie owner of the |
Mandatory changes to prepare the front stack for the upcoming updates and improvements (i.e. tabs, routing, autoimport icons, tailwind ...)