This introduces development environment tooling for
Yew and TailwindCSS development.
Webpack is updated to version 5 this introduces changes in config
due to changes in webpack API config.
TailwindCSS is setup with "bare" configuration, this will change as we move
forward by implementing colors, fonts, and overriding TailwindCSS defaults.
This introduces development environment tooling for Yew and TailwindCSS development.
Webpack is updated to version 5 this introduces changes in config due to changes in webpack API config.
TailwindCSS is setup with "bare" configuration, this will change as we move forward by implementing colors, fonts, and overriding TailwindCSS defaults.
Screenshots
Source
```rust use yew::prelude::*; pub struct App {} pub enum Msg {} impl Component for App { type Message = Msg; type Properties = (); fn create(_: Self::Properties, _: ComponentLink