This commit is contained in:
2024-03-01 20:28:14 +08:00
commit 076c21dc36
491 changed files with 84482 additions and 0 deletions

10
webpack.alias.js Normal file
View File

@@ -0,0 +1,10 @@
const path = require('path')
module.exports = {
resolve: {
alias: {
'common': path.resolve(__dirname, 'common'),
'client': path.resolve(__dirname, 'client')
}
}
}