add day 93

This commit is contained in:
Zoe
2022-12-24 21:44:03 -06:00
parent 2afca5c906
commit 888e351615
50 changed files with 12436 additions and 0 deletions

14
day93/vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import('vite').UserConfig} */
export default {
build: {
target: 'es2022',
},
server: {
port: 8080,
host: '0.0.0.0',
watch: {
include: ['./**/pages/**.devto', './public/**', './**/components/**.devto', './devto.config.js']
}
},
};