Initial Commit
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
module.exports = {
|
||||
title: 'Integration Boilerplate',
|
||||
base: '/integration-boilerplate/',
|
||||
description: 'Documentation for the new Integration boilerplate',
|
||||
head: [['link', { rel: 'icon', href: '/favicon.png' }]],
|
||||
theme: 'vsf-docs',
|
||||
configureWebpack: (config) => {
|
||||
config.module.rules = config.module.rules.map((rule) => ({
|
||||
...rule,
|
||||
use:
|
||||
rule.use &&
|
||||
rule.use.map((useRule) => ({
|
||||
...useRule,
|
||||
options:
|
||||
useRule.loader === 'url-loader'
|
||||
? /**
|
||||
Hack for loading images properly.
|
||||
ref: https://github.com/vuejs/vue-loader/issues/1612#issuecomment-559366730
|
||||
*/
|
||||
{ ...useRule.options, esModule: false }
|
||||
: useRule.options
|
||||
}))
|
||||
}));
|
||||
},
|
||||
themeConfig: {
|
||||
nav: [
|
||||
{ text: 'Vue Storefront', link: 'https://vuestorefront.io/' },
|
||||
{ text: 'Core Documentation', link: 'https://docs.vuestorefront.io/v2/' }
|
||||
],
|
||||
sidebar: {
|
||||
'/': [
|
||||
{
|
||||
title: 'Reference',
|
||||
collapsable: false,
|
||||
children: [['/reference/api/', 'API Reference']]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,6 @@
|
||||
export default ({
|
||||
Vue, // the version of Vue being used in the VuePress app
|
||||
options, // the options for the root Vue instance
|
||||
router, // the router instance for the app
|
||||
siteData // site metadata
|
||||
}) => {}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 109 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,18 @@
|
||||
.badge {
|
||||
margin-top: 4px;
|
||||
background-color: #22c34b;
|
||||
}
|
||||
|
||||
.badge.info {
|
||||
background-color: #22c34b !important;
|
||||
}
|
||||
|
||||
.multiselect__tag {
|
||||
background: #22c34b !important;
|
||||
}
|
||||
|
||||
.custom-block.tip {
|
||||
border-color: #22c34b;
|
||||
background-color: #f0f7f2;
|
||||
}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
$accentColor = #22c34b;
|
||||
Reference in New Issue
Block a user