mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 19:38:07 +03:00
4a933b814f
* web: Update deps. Avoid devDependencies. * web: Replace deprecated package with our own. * web: Clean up dev deps. * web: Clean up root packages. * web: Dedupe plugin.
13 lines
308 B
JavaScript
13 lines
308 B
JavaScript
import { createBundleDefinitions } from "#bundler/utils/node";
|
|
import { inlineCSSPlugin } from "#bundler/vite-plugin-lit-css/node";
|
|
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
define: createBundleDefinitions(),
|
|
plugins: [
|
|
// ---
|
|
inlineCSSPlugin(),
|
|
],
|
|
});
|