samgis-lisa-on-cuda / static /vite.config.ts
alessandro trinca tornidor
[feat] set lisa inference as index page
8be838e
raw
history blame contribute delete
No virus
561 Bytes
import { fileURLToPath, URL } from 'node:url'
import { resolve } from 'node:path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
build: {
rollupOptions: {
input: {
samgis: resolve(__dirname, 'samgis.html'),
lisa: resolve(__dirname, 'lisa.html'),
index: resolve(__dirname, "index.html"),
},
},
},
})