add fixtures

This commit is contained in:
yimysty
2022-06-17 15:56:00 -07:00
parent 9a28a8d8ad
commit 7c74d60067
12 changed files with 82 additions and 14 deletions

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,4 @@
module.exports={
basePath: '/gh-pages-test'/* test */,
}

View File

@@ -0,0 +1,4 @@
module.exports={
}

View File

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

View File

@@ -0,0 +1,8 @@
import { resolve } from 'path'
export default {
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: 'some/path'
}
}