All checks were successful
main-branch-frovide/pipeline/head This commit looks good
suit 웹폰트 적용
9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
import tailwindcss from '@tailwindcss/vite';
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), sveltekit()],
|
|
server: { allowedHosts: ['code.frovide.com'] }
|
|
});
|