feat: launch Roncarve Harness product page

This commit is contained in:
2026-08-22 21:49:25 +08:00
parent 28574f367a
commit 9cfbb95b1e
18 changed files with 3561 additions and 13 deletions
+24
View File
@@ -0,0 +1,24 @@
import { resolve } from 'node:path';
import { defineConfig } from 'vite';
export default defineConfig({
appType: 'mpa',
base: '/',
server: {
host: '0.0.0.0',
allowedHosts: ['localhost', '127.0.0.1', 'terminal.local']
},
preview: {
host: '0.0.0.0'
},
build: {
outDir: 'dist',
emptyOutDir: true,
rollupOptions: {
input: {
home: resolve(process.cwd(), 'index.html'),
harness: resolve(process.cwd(), 'products/roncarve-harness/index.html')
}
}
}
});