mirror of
https://github.com/wsvincent/awesome-django.git
synced 2024-11-27 14:01:11 +00:00
parent
01521af9b6
commit
c67a1b8324
10
Makefile
10
Makefile
|
@ -12,14 +12,20 @@ lint:
|
|||
|
||||
.PHONY: static
|
||||
static:
|
||||
@JEKYLL_ENV=production \
|
||||
npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \
|
||||
./src/style.css \
|
||||
--config ./tailwind.config.js \
|
||||
--output ./assets/style.css
|
||||
|
||||
@npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \
|
||||
./src/style.css \
|
||||
--config ./tailwind.config.js \
|
||||
--output ./assets/style.css
|
||||
--output ./assets/development.css
|
||||
|
||||
.PHONY: serve
|
||||
serve:
|
||||
bundle exec jekyll serve --drafts --watch --port 4000
|
||||
@bundle exec jekyll serve --drafts --watch --port 4000
|
||||
|
||||
.PHONY: toc
|
||||
toc:
|
||||
|
|
|
@ -5,7 +5,11 @@
|
|||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<title>Awesome Django</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
{% if jekyll.environment == 'development' %}
|
||||
<link rel="stylesheet" href="{{ site.baseurl }}/assets/development.css" />
|
||||
{% else %}
|
||||
<link rel="stylesheet" href="{{ site.baseurl }}/assets/style.css" />
|
||||
{% endif %}
|
||||
</head>
|
||||
|
||||
<body class="debug-screens max-w-screen-lg mx-auto py-8 px-4 sm:px-6 lg:py-8 lg:px-8 border border-2">
|
||||
<body class="max-w-screen-lg mx-auto py-8 px-4 sm:px-6 lg:py-8 lg:px-8 border border-2 {% if jekyll.environment == 'development' %}debug-screens{% endif %}">
|
||||
|
|
108700
assets/development.css
Normal file
108700
assets/development.css
Normal file
File diff suppressed because it is too large
Load Diff
106949
assets/style.css
106949
assets/style.css
File diff suppressed because it is too large
Load Diff
|
@ -4,4 +4,3 @@ module.exports = {
|
|||
autoprefixer: {},
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@ module.exports = {
|
|||
purgeLayersByDefault: true,
|
||||
},
|
||||
purge: {
|
||||
enabled: false, //process.env.JEKYLL_ENV == "production",
|
||||
enabled: process.env.JEKYLL_ENV == "production",
|
||||
mode: 'all',
|
||||
content: [
|
||||
'*.html'
|
||||
'**/*.html'
|
||||
],
|
||||
},
|
||||
plugins: [
|
||||
|
|
Loading…
Reference in New Issue
Block a user