Compare commits
2 Commits
60e1fc5d5d
...
a8c94fc1cd
Author | SHA1 | Date | |
---|---|---|---|
a8c94fc1cd | |||
0025a9cf1a |
11
build.sh
11
build.sh
@ -1,8 +1,15 @@
|
||||
#!/bin/bash
|
||||
echo "Building Tailwind CSS..."
|
||||
|
||||
echo "🔍 Checking for Tailwind CSS..."
|
||||
if ! [ -d "node_modules" ]; then
|
||||
echo "📦 Installing Tailwind CSS and dependencies..."
|
||||
npm install
|
||||
fi
|
||||
|
||||
echo "🚀 Building Tailwind CSS..."
|
||||
npx tailwindcss -i ./static/css/main.css -o ./static/css/output.css --minify
|
||||
|
||||
echo "Building Zola site..."
|
||||
echo "🔨 Building Zola site..."
|
||||
zola build
|
||||
|
||||
echo "✅ Build complete!"
|
||||
|
File diff suppressed because one or more lines are too long
7
start.sh
7
start.sh
@ -1,4 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "🔍 Checking for Tailwind CSS..."
|
||||
if ! [ -d "node_modules" ]; then
|
||||
echo "📦 Installing Tailwind CSS and dependencies..."
|
||||
npm install
|
||||
fi
|
||||
|
||||
echo "Starting Tailwind CSS watcher & Zola live server..."
|
||||
|
||||
npx tailwindcss -i ./static/css/main.css -o ./static/css/output.css --watch & zola serve
|
||||
|
Loading…
Reference in New Issue
Block a user