Files
component-lib/svelte.config.js
Luke Else b31a70d64d
Some checks failed
Publish Svelte Tailwind Library / build-and-publish (push) Failing after 32s
fix: Properly architected lib repo to export index.ts into the dist
2025-09-16 07:35:53 +01:00

13 lines
248 B
JavaScript

import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
export default {
preprocess: vitePreprocess(),
kit: {
package: {
dir: 'dist',
emitTypes: true,
files: () => true // This will include all files
}
}
};