Skyler Grey | 7177bbd | 2023-06-01 03:26:31 +0200 | [diff] [blame] | 1 | import adapter from '@sveltejs/adapter-auto'; |
| 2 | import { vitePreprocess } from '@sveltejs/kit/vite'; |
| 3 | /** @type {import('@sveltejs/kit').Config}*/ |
| 4 | const config = { |
| 5 | // Consult https://kit.svelte.dev/docs/integrations#preprocessors |
| 6 | // for more information about preprocessors |
Skyler Grey | 22205e6 | 2023-08-06 15:20:25 +0000 | [diff] [blame] | 7 | preprocess: [vitePreprocess()], |
Skyler Grey | 7177bbd | 2023-06-01 03:26:31 +0200 | [diff] [blame] | 8 | kit: { |
| 9 | // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. |
| 10 | // If your environment is not supported or you settled on a specific environment, switch out the adapter. |
| 11 | // See https://kit.svelte.dev/docs/adapters for more information about adapters. |
| 12 | adapter: adapter(), |
| 13 | alias: { |
| 14 | $components: '../../packages/components/dist', |
| 15 | '$components/*': '../../packages/components/dist/*' |
| 16 | } |
| 17 | }, |
| 18 | shadcn: { |
| 19 | componentPath: '../../packages/components/src/lib/ui' |
| 20 | } |
| 21 | }; |
| 22 | export default config; |