Skip to content

Commit

Permalink
refactor(config): 💡 improve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaa committed Sep 1, 2022
1 parent e69a343 commit 3af33fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions svelte.config.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
// sveltekit config type
import type { Config } from '@sveltejs/kit'
// svelte preprocess
import preprocess from 'svelte-preprocess'
// svelte adapter
import adapterAuto from '@sveltejs/adapter-auto'
import adapterNode from '@sveltejs/adapter-node'
import adapterStatic from '@sveltejs/adapter-static'
// svelte preprocessor
import { mdsvex } from 'mdsvex'
import mdsvexConfig from './mdsvex.config.js'
import preprocess from 'svelte-preprocess'

const defineConfig = (config: Config) => config

Expand Down
3 changes: 1 addition & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
// vite define config
import { defineConfig } from 'vite'
// vite sveltekit
import { sveltekit } from '@sveltejs/kit/vite'
// vite plugin
import UnoCSS from 'unocss/vite'
import { presetTagify, presetIcons, extractorSvelte } from 'unocss'
import { VitePWA } from 'vite-plugin-pwa'
import { sveltekit } from '@sveltejs/kit/vite'
// postcss & tailwindcss
import TailwindCSS from 'tailwindcss'
import tailwindConfig from './tailwind.config'
Expand Down

0 comments on commit 3af33fb

Please sign in to comment.