This commit is contained in:
Zoe
2022-10-01 15:28:36 -05:00
parent d21957e97c
commit cd3fdbc149
29 changed files with 4216 additions and 0 deletions

11
day9/vite.config.js Normal file
View File

@@ -0,0 +1,11 @@
/** @type {import('vite').UserConfig} */
export default {
build: {
target: 'es2020',
},
server: {
port: 3000,
host: '0.0.0.0'
}
}