mirror of
https://github.com/Traceworks2023/nxtgauge-frontend-solid.git
synced 2026-06-10 20:01:27 +00:00
- 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
|
|
};
|