Skip to content

Commit

Permalink
fix: tauri build error in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ropali committed Dec 25, 2024
1 parent c52540f commit 9108ecc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/** @type {import('tailwindcss').Config} */

const daisyui = require('daisyui');

export default {
content: [
"./src/index.html",
Expand All @@ -8,7 +11,7 @@ export default {
extend: {},
},
plugins: [
require('daisyui'),
daisyui
],
darkMode: ['selector', '[data-theme="night"]', '[data-theme="sunset"]', '[data-theme="dark"]'],
safelist: ["dark", "sunset"],
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"module": "ESNext",
"target": "ESNext",
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"],
"skipLibCheck": true,
"sourceMap": true,
Expand Down

0 comments on commit 9108ecc

Please sign in to comment.