Files
avam/.vscode/settings.json
2024-10-17 00:56:02 +02:00

19 lines
538 B
JSON

{
"rust-analyzer.procMacro.ignored": {
"leptos_macro": [
// optional:
// "component",
"server",
],
},
// if code that is cfg-gated for the `ssr` feature is shown as inactive,
// you may want to tell rust-analyzer to enable the `ssr` feature by default
//
// you can also use `rust-analyzer.cargo.allFeatures` to enable all features
"rust-analyzer.cargo.features": [
"ssr"
],
"files.associations": {
"input.scss": "tailwindcss"
}
}