Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
"useTabs": false,
"vueIndentScriptAndStyle": false,
"plugins": ["@trivago/prettier-plugin-sort-imports"],
"importOrder": ["<THIRD_PARTY_MODULES>", "^@thunderstore/(.*)$", "^[./]"],
"importOrder": [
"^\\./styles/index\\.css$",
"<THIRD_PARTY_MODULES>",
"^@thunderstore/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}
3 changes: 2 additions & 1 deletion apps/cyberstorm-remix/app/root.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import "./styles/index.css";

// import { LinksFunction } from "@remix-run/react/dist/routeModules";
import { Provider as RadixTooltip } from "@radix-ui/react-tooltip";
import { withSentry } from "@sentry/remix";
Expand Down Expand Up @@ -48,7 +50,6 @@ import {
import type { Route } from "./+types/root";
import { Footer } from "./commonComponents/Footer/Footer";
import { NavigationWrapper } from "./commonComponents/Navigation/NavigationWrapper";
import "./styles/index.css";

// REMIX TODO: https://remix.run/docs/en/main/route/links
// export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }];
Expand Down
Loading