mirror of
https://github.com/MbinOrg/mbin-website.git
synced 2025-06-29 06:38:55 +00:00
15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
import { defineConfig } from '@solidjs/start/config';
|
|
import Icons from 'unplugin-icons/vite';
|
|
|
|
export default defineConfig({
|
|
ssr: true,
|
|
server: {
|
|
preset: 'github-pages',
|
|
prerender: {
|
|
crawlLinks: true,
|
|
},
|
|
},
|
|
vite: {
|
|
plugins: [Icons({ compiler: 'solid' })],
|
|
},
|
|
});
|