All checks were successful
Deploy / Deploy (push) Successful in 31s
Co-authored-by: Astra <me@astrra.space> Reviewed-on: #9 Reviewed-by: Astra <me@astrra.space> Co-authored-by: Ari <ariadna@hey.com> Co-committed-by: Ari <ariadna@hey.com>
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { defineConfig } from "vite";
|
|
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
import { themePlugin } from "./theming";
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
themePlugin(),
|
|
svelte(),
|
|
],
|
|
});
|