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

Commit 78346d9

Browse files
authored
Merge pull request #276 from asigloo/feature/264-move-docs-inside-the-project
Feature/264 move docs inside the project
2 parents 0c4fa01 + e5f6a9c commit 78346d9

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

docs/netlify.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build]
2-
publish = ".vitepress/dist"
2+
publish = "/.vitepress/dist"
33
command = "npm run docs:build"
44
[[redirects]]
55
from = "/*"

tailwind.config.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
// tailwind.config.js
22
module.exports = {
3-
purge: ['./src/**/*.html', './src/**/*.vue', './src/**/*.ts'],
3+
purge: [
4+
'./src/**/*.html',
5+
'./src/**/*.vue',
6+
'./src/**/*.ts',
7+
'./demos/**/*.html',
8+
'./demos/**/*.vue',
9+
'./demos/**/*.ts',
10+
'./docs/**/*.html',
11+
'./docs/**/*.vue',
12+
'./docs/**/*.ts',
13+
],
414
theme: {
515
fontFamily: {
616
display: ['Montserrat'],

0 commit comments

Comments
 (0)