* feat(template): fullstack cookiecutter — Tailwind v4 + TS + shadcn-svelte scaffold * feat(template): fullstack — shadcn-svelte ui components + dashboard layout * refactor(template): fullstack — remove counter/Header demo files * feat(spec): add tailwind/shadcn/ts to STACK_REQUIRED fullstack * test(template): update fullstack cookiecutter assertions for shadcn-svelte * fix(ci): ruff format test_cookiecutter_templates --------- Co-authored-by: opencode-agent <agent@opencode.local>
24 lines
No EOL
705 B
JavaScript
24 lines
No EOL
705 B
JavaScript
import adapter from '@sveltejs/adapter-node';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
kit: {
|
|
adapter: adapter(),
|
|
alias: {
|
|
$lib: 'src/lib',
|
|
'$lib/*': 'src/lib/*',
|
|
'$lib/utils': 'src/lib/utils',
|
|
'$lib/utils/*': 'src/lib/utils/*',
|
|
'$lib/hooks': 'src/lib/hooks',
|
|
'$lib/hooks/*': 'src/lib/hooks/*',
|
|
'$lib/components': 'src/lib/components',
|
|
'$lib/components/*': 'src/lib/components/*',
|
|
'$lib/components/ui': 'src/lib/components/ui',
|
|
'$lib/components/ui/*': 'src/lib/components/ui/*',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config; |