diff --git a/next.config.js b/next.config.js index 8e61050..4685a59 100644 --- a/next.config.js +++ b/next.config.js @@ -1,13 +1,5 @@ module.exports = { swcMinify: true, - rewrites: async () => { - return [ - { - source: "/", - destination: "/index.html", - } - ] - }, webpack: (config) => { config.resolve.fallback = { fs: false, diff --git a/tailwind.config.js b/tailwind.config.js index b2a7a53..0bab790 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,15 +1,17 @@ /** @type {import('tailwindcss').Config} */ +const defaultTheme = require('tailwindcss/defaultTheme') + module.exports = { content: [ - "./app/**/*.{js,ts,jsx,tsx,mdx}", "./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", - - // Or if using `src` directory: - "./src/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { - extend: {}, + extend: { + fontFamily: { + sans: ['Inter var', ...defaultTheme.fontFamily.sans], + }, + }, }, plugins: [], }