Files
speckle-server/packages/viewer-sandbox/vite.config.js
T
Kristaps Fabians Geikins 437e1558ec fix: fixing all builds that broke with the new viewer (#788)
builds fix + viewer logic fixes
2022-06-02 18:13:32 +03:00

15 lines
180 B
JavaScript

/**
* @type {import('vite').UserConfig}
*/
const config = {
server: {
host: '0.0.0.0',
port: '3033'
},
build: {
target: 'esnext'
}
}
module.exports = config