Files
lightweight-charts-python/src/vite.config.js
2024-03-30 15:38:34 +00:00

14 lines
175 B
JavaScript

import { defineConfig } from 'vite';
const input = {
main: './src/example/index.html',
};
export default defineConfig({
build: {
rollupOptions: {
input,
},
},
});