19 lines
537 B
JSON
19 lines
537 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"
|
|
}
|
|
} |