Skip to content

proven-study/nextjs13-fifa-2022

Repository files navigation

fifa-2022

API doc: https://documenter.getpostman.com/view/24446543/2s8YsnYGuh

App setup

  • Create app with nextjs 13: npx create-next-app@latest --experimental-app

  • Install tailwind: npm i -D tailwindcss postcss autoprefixer

  • Config tailwind: npx tailwindcss init -p

  • change tailwind.config.js to:

    /** @type {import('tailwindcss').Config} */
    module.exports = {
      content: [
        "./app/**/*.{js,ts,jsx,tsx}", // Note the addition of the `app` directory.
        "./pages/**/*.{js,ts,jsx,tsx}",
        "./components/**/*.{js,ts,jsx,tsx}",
      ],
      theme: {
        extend: {},
      },
      plugins: [],
    }
  • app/globals.css

    @tailwind base;
    @tailwind components;
    @tailwind utilities;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published