12 lines
147 B
TypeScript
12 lines
147 B
TypeScript
/** @type {import('vite').UserConfig} */
|
|
export default {
|
|
build: {
|
|
target: 'es2020',
|
|
},
|
|
|
|
server: {
|
|
port: 8080,
|
|
host: '0.0.0.0'
|
|
},
|
|
};
|