mirror of
https://github.com/actions/configure-pages.git
synced 2026-03-30 18:14:51 +00:00
add fixtures
This commit is contained in:
8
src/fixtures/gatsby-config.js
Normal file
8
src/fixtures/gatsby-config.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import { resolve } from 'path'
|
||||
|
||||
export default {
|
||||
alias: {
|
||||
'style': resolve(__dirname, './assets/style')
|
||||
},
|
||||
pathPrefix: '/prefix',/* test */
|
||||
}
|
||||
3
src/fixtures/gatsby-config.old.js
Normal file
3
src/fixtures/gatsby-config.old.js
Normal file
@@ -0,0 +1,3 @@
|
||||
module.exports = {
|
||||
pathPrefix: '/prefix'
|
||||
}
|
||||
9
src/fixtures/next.config.js
Normal file
9
src/fixtures/next.config.js
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
import { resolve } from 'path'
|
||||
|
||||
export default {
|
||||
alias: {
|
||||
'style': resolve(__dirname, './assets/style')
|
||||
},
|
||||
basePath: '/gh-pages-test'/* test */,
|
||||
}
|
||||
4
src/fixtures/next.config.old.js
Normal file
4
src/fixtures/next.config.old.js
Normal file
@@ -0,0 +1,4 @@
|
||||
module.exports={
|
||||
basePath: '/gh-pages-test'/* test */,
|
||||
}
|
||||
|
||||
4
src/fixtures/next.config.old.missing.js
Normal file
4
src/fixtures/next.config.old.missing.js
Normal file
@@ -0,0 +1,4 @@
|
||||
module.exports={
|
||||
|
||||
}
|
||||
|
||||
11
src/fixtures/nuxt.config.js
Normal file
11
src/fixtures/nuxt.config.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { resolve } from 'path'
|
||||
|
||||
export default {
|
||||
alias: {
|
||||
'style': resolve(__dirname, './assets/style')
|
||||
},
|
||||
target: 'static',
|
||||
router: {
|
||||
base: 'some/path'
|
||||
}
|
||||
}
|
||||
8
src/fixtures/nuxt.config.missing.js
Normal file
8
src/fixtures/nuxt.config.missing.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import { resolve } from 'path'
|
||||
|
||||
export default {
|
||||
alias: {
|
||||
'style': resolve(__dirname, './assets/style')
|
||||
},
|
||||
target: 'static'
|
||||
}
|
||||
10
src/fixtures/nuxt.config.old.js
Normal file
10
src/fixtures/nuxt.config.old.js
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
module.exports={
|
||||
alias: {
|
||||
'style': resolve(__dirname, './assets/style')
|
||||
},
|
||||
target: 'static',
|
||||
router: {
|
||||
base: 'some/path'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user