- Updated Help Center with dark hero and light content sections - Added ArticleContent component for rendering structured content blocks - Updated seed data with detailed articles matching admin KB categories - Fixed article alignment and spacing issues - Uses ContentBlock[] instead of HTML strings for type-safe content
11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
// vite.config.ts
|
|
import { defineConfig } from "@solidjs/start/config";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
var vite_config_default = defineConfig({
|
|
vite: {
|
|
plugins: [tailwindcss()]
|
|
}
|
|
});
|
|
export {
|
|
vite_config_default as default
|
|
};
|