refactor: '/@/' ==> '@/' and '/#/ '==> '#/' (#3329)

* refactor: /@/ ==> @/

* chore: '/@/' ==> '@/' and '/#/ '==> '#/'

* fix: lint:prettier
This commit is contained in:
xingyu
2023-11-24 10:32:04 +08:00
committed by GitHub
parent 3f65baf503
commit 4d2fb0cb6f
127 changed files with 807 additions and 827 deletions

View File

@@ -45,16 +45,6 @@ function defineApplicationConfig(defineOptions: DefineOptions = {}) {
find: 'vue-i18n',
replacement: 'vue-i18n/dist/vue-i18n.cjs.js',
},
// /@/xxxx => src/xxxx
{
find: /\/@\//,
replacement: pathResolve('src') + '/',
},
// /#/xxxx => types/xxxx
{
find: /\/#\//,
replacement: pathResolve('types') + '/',
},
// @/xxxx => src/xxxx
{
find: /@\//,