Skip to content

Commit

Permalink
fix: add ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
icco committed Sep 2, 2024
1 parent 4678bcc commit 06719e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @ts-check

/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports */
const { createSecureHeaders } = require("next-secure-headers");
const { withContentlayer } = require("next-contentlayer2");

Expand Down
3 changes: 2 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ const config: Config = {
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
// eslint-disable-next-line @typescript-eslint/no-require-imports
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
themes: [
{
light: {
// eslint-disable-next-line @typescript-eslint/no-var-requires
// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports
...require("daisyui/src/theming/themes")["nord"],
},
dark: {
Expand Down

0 comments on commit 06719e2

Please sign in to comment.