Biome format

This commit is contained in:
2025-09-03 12:37:29 -03:00
parent 55fab87db3
commit 5f6136a378
43 changed files with 1473 additions and 1379 deletions

View File

@@ -6,25 +6,25 @@ import path from "node:path";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [
tailwindcss(),
tanstackRouter({}),
react(),
VitePWA({
registerType: "autoUpdate",
manifest: {
name: "Reflecto",
short_name: "Reflecto",
description: "Reflecto - PWA Application",
theme_color: "#0c0c0c",
},
pwaAssets: { disabled: false, config: true },
devOptions: { enabled: true },
}),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
plugins: [
tailwindcss(),
tanstackRouter({}),
react(),
VitePWA({
registerType: "autoUpdate",
manifest: {
name: "Reflecto",
short_name: "Reflecto",
description: "Reflecto - PWA Application",
theme_color: "#0c0c0c",
},
pwaAssets: { disabled: false, config: true },
devOptions: { enabled: true },
}),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});