mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-29 07:30:20 +00:00
983fcfc616
* hoist example projects, remove oidc * move over example projects from the separate repo * Update ecommerce site to the latest version of dioxus * update wifi scanner to 0.5 * drop the chatbot example; might be restored in a separate PR --------- Co-authored-by: Evan Almloff <evanalmloff@gmail.com>
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
module.exports = {
|
|
mode: "all",
|
|
content: [
|
|
// include all rust, html and css files in the src directory
|
|
"./src/**/*.{rs,html,css}",
|
|
// include all html files in the output (dist) directory
|
|
"./dist/**/*.html",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|