feat: integrate luckysheet inline and fullscreen

This commit is contained in:
liaibo
2025-11-23 17:22:35 +08:00
parent c8e479aeab
commit 994dd4e67c
529 changed files with 403413 additions and 201 deletions
+26
View File
@@ -0,0 +1,26 @@
/** @type {import('vite').UserConfig} */
import { defineConfig } from 'vite';
export default defineConfig({
base: './',
server: {
port: 5000,
host: '0.0.0.0',
open: true,
proxy: {
'/api': {
target: 'http://localhost:9000',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, '')
}
}
},
build: {
outDir: './server/public/dist',
rollupOptions: {
input: {
main: '/entry.html'
}
}
}
});