runner-manager
Version:
A basic CLI to manage Github self-hosted runners on your machine
19 lines (17 loc) • 412 B
JavaScript
import { resolve } from "node:path"
import tailwindcss from "@tailwindcss/vite"
import { defineConfig } from "vite"
export default defineConfig({
base: "/runner-manager/", // Change this if your page is not hosted at a root URL
plugins: [
tailwindcss(),
],
build: {
outDir: "./ghpages",
rollupOptions: {
input: {
main: resolve(__dirname, "index.html"),
},
},
},
})