Pretty all the things I missed

My laptop didn't have lefthook running. Oops.
This commit is contained in:
Eli Ribble 2026-03-27 14:06:50 -07:00
parent f60bde7fd9
commit 4bbfbdb9e6
No known key found for this signature in database
30 changed files with 490 additions and 487 deletions

View file

@ -3,69 +3,74 @@ import vue from "@vitejs/plugin-vue";
import path from "path";
export default defineConfig({
plugins: [vue()],
plugins: [vue()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./ts"),
},
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./ts"),
},
},
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler",
silenceDeprecations: ["import", "global-builtin", "if-function", "color-functions"],
},
},
},
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler",
silenceDeprecations: [
"import",
"global-builtin",
"if-function",
"color-functions",
],
},
},
},
build: {
manifest: true,
outDir: "static/gen",
emptyOutDir: true,
rollupOptions: {
input: {
main: path.resolve(__dirname, "ts/main.ts"),
},
output: {
entryFileNames: "js/bundle.[hash].js",
chunkFileNames: "js/[name].[hash].js",
assetFileNames: (assetInfo) => {
if (/\.(woff2?|ttf|eot)$/.test(assetInfo.name || "")) {
return "fonts/[name].[hash][extname]";
}
if (/\.css$/.test(assetInfo.name || "")) {
return "css/style.[hash][extname]";
}
return "assets/[name].[hash][extname]";
},
},
},
sourcemap: true,
},
build: {
manifest: true,
outDir: "static/gen",
emptyOutDir: true,
rollupOptions: {
input: {
main: path.resolve(__dirname, "ts/main.ts"),
},
output: {
entryFileNames: "js/bundle.[hash].js",
chunkFileNames: "js/[name].[hash].js",
assetFileNames: (assetInfo) => {
if (/\.(woff2?|ttf|eot)$/.test(assetInfo.name || "")) {
return "fonts/[name].[hash][extname]";
}
if (/\.css$/.test(assetInfo.name || "")) {
return "css/style.[hash][extname]";
}
return "assets/[name].[hash][extname]";
},
},
},
sourcemap: true,
},
server: {
allowedHosts: ["poweredge.local", "dev-sync.nidus.cloud"],
port: 9000,
proxy: {
"/api": {
target: "http://127.0.0.1:9002",
changeOrigin: false,
},
"/configuration/upload/pool/flyover": {
target: "http://127.0.0.1:9002",
changeOrigin: false,
},
"/signin": {
target: "http://localhost:9002",
changeOrigin: false,
},
"/signup": {
target: "http://localhost:9002",
changeOrigin: false,
}
},
strictPort: true,
},
server: {
allowedHosts: ["poweredge.local", "dev-sync.nidus.cloud"],
port: 9000,
proxy: {
"/api": {
target: "http://127.0.0.1:9002",
changeOrigin: false,
},
"/configuration/upload/pool/flyover": {
target: "http://127.0.0.1:9002",
changeOrigin: false,
},
"/signin": {
target: "http://localhost:9002",
changeOrigin: false,
},
"/signup": {
target: "http://localhost:9002",
changeOrigin: false,
},
},
strictPort: true,
},
});