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'), | |
}, | |
}, | |
}, | |
}) | |