oseda-cli 3.0.2

OSEDA project scaffolding
Documentation
1
2
3
4
5
6
7
8
9
10
11
import { defineConfig } from "vite";

export default defineConfig({
  base: "./",
  build: {
    rollupOptions: {
      input: "index.html",
    },
    assetsInlineLimit: 100_000, // inline images/fonts up to ~100kb, save server space, enforce this?
  },
});