the reason is that leptos depends too much on the nightly build of rust and that didnt go well with the local dev env
15 lines
261 B
JavaScript
15 lines
261 B
JavaScript
module.exports = {
|
|
purge: {
|
|
mode: "all",
|
|
content: [
|
|
"./src/**/*.rs",
|
|
"./index.html",
|
|
"./src/**/*.html",
|
|
"./src/**/*.css",
|
|
],
|
|
},
|
|
theme: {},
|
|
variants: {},
|
|
plugins: [],
|
|
};
|