├── .gitignore ├── .vscode └── settings.json ├── app ├── root.tsx └── routes │ └── _index.tsx ├── biome.json ├── env.d.ts ├── package.json ├── public └── favicon.ico ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | 7 | .history 8 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/app/routes/_index.tsx -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/biome.json -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/vite-remix-stylex/HEAD/vite.config.ts --------------------------------------------------------------------------------