alternative tangled frontend (extremely wip)

chore: formatting

serenity 7b847673 294b90d6

+24 -24
+24 -24
vite.config.ts
··· 1 - import { defineConfig } from 'vite' 2 - import { devtools } from '@tanstack/devtools-vite' 3 - import { tanstackStart } from '@tanstack/react-start/plugin/vite' 4 - import viteReact from '@vitejs/plugin-react' 5 - import viteTsConfigPaths from 'vite-tsconfig-paths' 6 - import tailwindcss from '@tailwindcss/vite' 7 - import { nitro } from 'nitro/vite' 1 + import { defineConfig } from "vite"; 2 + import { devtools } from "@tanstack/devtools-vite"; 3 + import { tanstackStart } from "@tanstack/react-start/plugin/vite"; 4 + import viteReact from "@vitejs/plugin-react"; 5 + import viteTsConfigPaths from "vite-tsconfig-paths"; 6 + import tailwindcss from "@tailwindcss/vite"; 7 + import { nitro } from "nitro/vite"; 8 8 9 9 const config = defineConfig({ 10 - plugins: [ 11 - devtools(), 12 - nitro(), 13 - // this is the plugin that enables path aliases 14 - viteTsConfigPaths({ 15 - projects: ['./tsconfig.json'], 16 - }), 17 - tailwindcss(), 18 - tanstackStart(), 19 - viteReact({ 20 - babel: { 21 - plugins: ['babel-plugin-react-compiler'], 22 - }, 23 - }), 24 - ], 25 - }) 10 + plugins: [ 11 + devtools(), 12 + nitro(), 13 + // this is the plugin that enables path aliases 14 + viteTsConfigPaths({ 15 + projects: ["./tsconfig.json"], 16 + }), 17 + tailwindcss(), 18 + tanstackStart(), 19 + viteReact({ 20 + babel: { 21 + plugins: ["babel-plugin-react-compiler"], 22 + }, 23 + }), 24 + ], 25 + }); 26 26 27 - export default config 27 + export default config;