alessandro trinca tornidor
[feat] prepare entire docker build with nvidia GPU on hf space cloning https://huggingface.co/spaces/aletrn/samgis
0914710
| 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: { | |
| main: resolve(__dirname, 'index.html'), | |
| lisa: resolve(__dirname, 'lisa.html'), | |
| }, | |
| }, | |
| }, | |
| }) | |