This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { existsSync } from 'node:fs'; | |
import path from 'node:path'; | |
import { vitePlugin as remix } from '@remix-run/dev'; | |
import { DefineRoutesFunction } from '@remix-run/dev/dist/config/routes'; | |
import * as glob from 'glob'; | |
import { defineConfig } from 'vite'; | |
import tsconfigPaths from 'vite-tsconfig-paths'; | |
export default defineConfig({ | |
plugins: [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useEffect, useRef, useState } from 'react'; | |
import { | |
useCombobox, | |
Combobox, | |
Group, | |
CheckIcon, | |
ScrollArea, | |
InputBase, | |
ActionIcon, | |
type InputBaseProps, |
OlderNewer