You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* refactor(debug): make it easier to get debug logs without being spammy
* fix: update docs to use correct namespace
* remove very noisy log about css hash
Copy file name to clipboardExpand all lines: docs/faq.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -167,7 +167,7 @@ export default {
167
167
There is no golden rule, but you can follow these recommendations:
168
168
169
169
1.**Never** combine plugins or preprocessors that rewrite imports with prebundling
170
-
2. Start with index imports and if your dev-server or build process feels slow, run the process with `DEBUG="vite:vite-plugin-svelte:stats"` to check compile stats to see if switching to deep imports can improve the experience.
170
+
2. Start with index imports and if your dev-server or build process feels slow, run the process with `DEBUG="vite-plugin-svelte:stats"` to check compile stats to see if switching to deep imports can improve the experience.
171
171
3. Do not mix deep and index imports for the same library, use one style consistently.
172
172
4. Use different import styles for different libraries where it helps. E.g. deep imports for the few icons of that one huge icon library, but index import for the component library that is heavily used.
0 commit comments