init 初始化

This commit is contained in:
yuping
2022-11-28 11:33:26 +08:00
parent 6424a4857b
commit 89c47f7a60
14 changed files with 636 additions and 30 deletions

19
webstorm.config.js Normal file
View File

@@ -0,0 +1,19 @@
'use strict'
const path = require('path')
function resolve(dir) {
return path.join(__dirname, '.', dir)
}
module.exports = {
context: path.resolve(__dirname, './'),
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'@': resolve('src')
}
}
}