fix: correct lint issues, format, move to tailwind
parent
8f9ba2a3c5
commit
1f2ba0abed
@ -0,0 +1 @@
|
||||
preload = ["bun-postcss-plugin"]
|
@ -0,0 +1 @@
|
||||
@import "tailwindcss";
|
@ -1,8 +1,9 @@
|
||||
/// <reference types="lucia" />
|
||||
declare namespace Lucia {
|
||||
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
|
||||
type Auth = import("../auth/index").Auth;
|
||||
type DatabaseUserAttributes = {
|
||||
handle: string;
|
||||
};
|
||||
type DatabaseSessionAttributes = {};
|
||||
type DatabaseSessionAttributes = object;
|
||||
}
|
||||
|
@ -1,13 +0,0 @@
|
||||
import transformerVariantGroup from "@unocss/transformer-variant-group";
|
||||
import { defineConfig, presetIcons, presetWebFonts, presetWind } from "unocss";
|
||||
|
||||
export default defineConfig({
|
||||
cli: {
|
||||
entry: {
|
||||
patterns: ["src/**/*.{ts,tsx}"],
|
||||
outFile: "public/dist/unocss.css",
|
||||
},
|
||||
},
|
||||
presets: [presetWind(), presetIcons(), presetWebFonts()],
|
||||
transformers: [transformerVariantGroup()],
|
||||
});
|
Loading…
Reference in New Issue