Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Feature/264 move docs inside the project #276

Merged
merged 2 commits into from
Sep 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/netlify.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build]
publish = ".vitepress/dist"
publish = "/.vitepress/dist"
command = "npm run docs:build"
[[redirects]]
from = "/*"
Expand Down
12 changes: 11 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
// tailwind.config.js
module.exports = {
purge: ['./src/**/*.html', './src/**/*.vue', './src/**/*.ts'],
purge: [
'./src/**/*.html',
'./src/**/*.vue',
'./src/**/*.ts',
'./demos/**/*.html',
'./demos/**/*.vue',
'./demos/**/*.ts',
'./docs/**/*.html',
'./docs/**/*.vue',
'./docs/**/*.ts',
],
theme: {
fontFamily: {
display: ['Montserrat'],
Expand Down