15 lines
242 B
TypeScript
15 lines
242 B
TypeScript
/** @type {import('vite').UserConfig} */
|
|
export default {
|
|
build: {
|
|
target: 'es2022',
|
|
},
|
|
|
|
server: {
|
|
port: 8080,
|
|
host: '0.0.0.0',
|
|
watch: {
|
|
include: ['./**/pages/**.devto', './public/**', './**/components/**.devto']
|
|
}
|
|
},
|
|
};
|