Skip to content

Commit

Permalink
fix: Added missing files to commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
HiImJulien committed Sep 16, 2024
1 parent fc8f3bc commit efd806d
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1 deletion.
6 changes: 6 additions & 0 deletions examples/actix-minijinja-alpine-tailwind/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
4 changes: 4 additions & 0 deletions examples/actix-minijinja-alpine-tailwind/src/js/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@tailwind base;
@tailwind variants;
@tailwind utilities;
@tailwind components;
1 change: 0 additions & 1 deletion examples/actix-minijinja-alpine-tailwind/src/js/app.js

This file was deleted.

13 changes: 13 additions & 0 deletions examples/actix-minijinja-alpine-tailwind/src/js/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import Alpine from "alpinejs";
import "./app.css";

Alpine.data("clicker", () => ({
count: 0,

click() {
this.count += 1;
}
}));

Alpine.start();

11 changes: 11 additions & 0 deletions examples/actix-minijinja-alpine-tailwind/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/templates/**/*.html"
],
theme: {
extend: {},
},
plugins: [],
}

0 comments on commit efd806d

Please sign in to comment.