[READ-ONLY] Mirror of https://github.com/graphieros/tiny-spark. An elegant, reactive and responsive sparkline chart solution without dependency. tiny-spark.graphieros.com/
chart sparkline universal
0

Configure Feed

Select the types of activity you want to include in your feed.

tiny-spark / vite.config.js
403 B 18 lines
1import { defineConfig } from 'vite' 2 3export default defineConfig({ 4 build: { 5 lib: { 6 entry: 'src/index.ts', 7 name: 'TinySpark', 8 fileName: (format) => `tiny-spark.${format}.js`, 9 formats: ['es', 'umd'], 10 }, 11 rollupOptions: { 12 external: [], 13 output: { 14 globals: {} 15 } 16 } 17 } 18})