add test cases

This commit is contained in:
yimysty
2022-06-17 18:36:26 -07:00
parent 7c74d60067
commit 0af6e78e1a
15 changed files with 193 additions and 58 deletions

View File

@@ -0,0 +1,8 @@
import { resolve } from 'path'
export default {
alias: {
'style': resolve(__dirname, './assets/style')
},
pathPrefix: '/amazing-new-repo/',/* test */
}

View File

@@ -0,0 +1,3 @@
module.exports = {
pathPrefix: '/amazing-new-repo/'
}

View File

@@ -0,0 +1,9 @@
import { resolve } from 'path'
export default {
alias: {
'style': resolve(__dirname, './assets/style')
},
basePath: '/amazing-new-repo/'/* test */,
}

View File

@@ -0,0 +1,4 @@
module.exports={
basePath: '/amazing-new-repo/'/* test */,
}

View File

@@ -0,0 +1,4 @@
module.exports={
basePath: '/amazing-new-repo/'
}

View File

@@ -0,0 +1,11 @@
import { resolve } from 'path'
export default {
alias: {
'style': resolve(__dirname, './assets/style')
},
target: 'static',
router: {
base: '/amazing-new-repo/'
}
}

View File

@@ -0,0 +1,11 @@
import { resolve } from 'path'
export default {
router: {
base: '/amazing-new-repo/'
},
alias: {
'style': resolve(__dirname, './assets/style')
},
target: 'static'
}

View File

@@ -0,0 +1,10 @@
module.exports={
alias: {
'style': resolve(__dirname, './assets/style')
},
target: 'static',
router: {
base: '/amazing-new-repo/'
}
}