feat: launch Roncarve Harness product page
This commit is contained in:
@@ -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')
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user