Format the committed vite build output so the biome pre-commit hook passes
This commit is contained in:
+22
-22
@@ -1,25 +1,25 @@
|
||||
import path from "node:path";
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
import { tanstackRouter } from "@tanstack/router-plugin/vite";
|
||||
import react from "@vitejs/plugin-react-swc";
|
||||
import { defineConfig } from "vite";
|
||||
import path from "node:path"
|
||||
import tailwindcss from "@tailwindcss/vite"
|
||||
import { tanstackRouter } from "@tanstack/router-plugin/vite"
|
||||
import react from "@vitejs/plugin-react-swc"
|
||||
import { defineConfig } from "vite"
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
// A portal serves this bundle under a path of its own and caches one copy
|
||||
// for every installation, so asset URLs have to be absolute under that
|
||||
// prefix. Unset — every ordinary build — this stays "/".
|
||||
base: process.env.VITE_BASE || "/",
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": path.resolve(__dirname, "./src"),
|
||||
},
|
||||
// A portal serves this bundle under a path of its own and caches one copy
|
||||
// for every installation, so asset URLs have to be absolute under that
|
||||
// prefix. Unset — every ordinary build — this stays "/".
|
||||
base: process.env.VITE_BASE || "/",
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": path.resolve(__dirname, "./src"),
|
||||
},
|
||||
plugins: [
|
||||
tanstackRouter({
|
||||
target: "react",
|
||||
autoCodeSplitting: true,
|
||||
}),
|
||||
react(),
|
||||
tailwindcss(),
|
||||
],
|
||||
});
|
||||
},
|
||||
plugins: [
|
||||
tanstackRouter({
|
||||
target: "react",
|
||||
autoCodeSplitting: true,
|
||||
}),
|
||||
react(),
|
||||
tailwindcss(),
|
||||
],
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user