add day 8

This commit is contained in:
Zoe
2022-09-30 16:27:12 -05:00
parent 99c70324ee
commit d21957e97c
28 changed files with 4165 additions and 0 deletions

11
day8/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'
}
}