oseda-cli 2.3.4

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

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