Skip to content

Commit e963b25

Browse files
authored
Merge branch 'feature/live-demo' into feature/v1.4.0
2 parents a2eed0a + 190a393 commit e963b25

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+13828
-67
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
2+
dist/
23
package-lock.json
34
/docs
45
/dist

ISSUE_TEMPLATE.md

-13
This file was deleted.

LICENSE.md

-21
This file was deleted.

docs/.vuepress/config.js

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
const markdownParser = require('./markdownParser')
2+
const path = require('path');
3+
module.exports = {
4+
title: 'Vue Material Dashboard',
5+
base: '/vue-material-dashboard/documentation/',
6+
markdown: {
7+
config: markdownParser
8+
},
9+
configureWebpack: (config, isServer) => {
10+
config.resolve.alias['@'] = path.resolve(__dirname, '../../src')
11+
},
12+
head: [
13+
['link', { rel: 'stylesheet', href: `https://fonts.googleapis.com/icon?family=Material+Icons` }],
14+
['link', { rel: 'icon', type: 'image/png', sizes: '96x96', href: '/favicon.png' }],
15+
['link', { rel: 'canonical', href: 'https://www.creative-tim.com/product/vue-material-dashboard' }]
16+
],
17+
themeConfig: {
18+
repo: 'creativetimofficial/vue-material-dashboard',
19+
nav: [
20+
{ text: 'v1.3.2', link: '/' }
21+
],
22+
sidebar: [
23+
{
24+
title: 'General Information',
25+
collapsable: false,
26+
children: [
27+
'/',
28+
'/component-docs/license'
29+
]
30+
},
31+
{
32+
title: 'Components',
33+
collapsable: false,
34+
children: [
35+
'/component-docs/buttons',
36+
'/component-docs/cards',
37+
'/component-docs/checkboxes',
38+
'/component-docs/dropdown',
39+
'/component-docs/inputs',
40+
'/component-docs/textarea',
41+
'/component-docs/maps',
42+
'/component-docs/notifications',
43+
'/component-docs/tables',
44+
'/component-docs/tabs',
45+
'/component-docs/tooltips',
46+
'/component-docs/material-icons',
47+
'/component-docs/toolbar'
48+
]
49+
}
50+
]
51+
}
52+
};

0 commit comments

Comments
 (0)