Skip to content

Commit

Permalink
Fix typechecking
Browse files Browse the repository at this point in the history
  • Loading branch information
HorusGoul committed Mar 29, 2024
1 parent a586661 commit 86cf9c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/remix-css-url-demo/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { vitePlugin as remix } from "@remix-run/dev";
import { installGlobals } from "@remix-run/node";
import { Plugin, defineConfig } from "vite";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
import styleX from "vite-plugin-stylex";

Expand All @@ -15,6 +15,6 @@ export default defineConfig({
serverBuildFile: "index.mjs",
}),
tsconfigPaths(),
styleX() as Plugin,
styleX(),
],
});
2 changes: 1 addition & 1 deletion apps/remix-demo/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default defineConfig({
serverBuildFile: "index.mjs",
}),
tsconfigPaths(),
styleX() as Plugin,
styleX(),
],
css: {
transformer: "lightningcss",
Expand Down

0 comments on commit 86cf9c7

Please sign in to comment.