mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-15 18:20:11 +00:00
Merge branch 'main' of github/Draconizations/pk-webs-svelte into feat/dashboard
This commit is contained in:
commit
8fa371bcc8
56 changed files with 6420 additions and 0 deletions
18
dashboard/vite.config.js
Normal file
18
dashboard/vite.config.js
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import resolve from 'path';
|
||||
import { defineConfig } from 'vite'
|
||||
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [svelte()],
|
||||
optimizeDeps: { exclude: ["svelte-navigator"] },
|
||||
build: {
|
||||
rollupOptions: {
|
||||
input: {
|
||||
main: 'index.html',
|
||||
404: '404.html'
|
||||
},
|
||||
},
|
||||
outDir: "docs"
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue