From 734364938c466a8f0db6ceea22c3b94791875089 Mon Sep 17 00:00:00 2001 From: fatm Date: Tue, 4 Apr 2023 16:18:40 +0600 Subject: [PATCH] upd: nuxt guide for nuxt 3.3 --- .nuxt-guide/README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.nuxt-guide/README.md b/.nuxt-guide/README.md index 106951c3..dd8dc96e 100644 --- a/.nuxt-guide/README.md +++ b/.nuxt-guide/README.md @@ -52,7 +52,7 @@ import { defineNuxtConfig } from 'nuxt' // https://v3.nuxtjs.org/api/configuration/nuxt.config export default defineNuxtConfig({ - buildModules: [ + modules: [ '@pinia/nuxt', ], postcss: { @@ -85,12 +85,14 @@ module.exports = { } ``` +Remove `require("@tailwindcss/line-clamp")`. + #### In App.vue ```vue