Next js + Next ui (no style why?)
Unanswered
Yellow Warbler posted this in #help-forum
Yellow WarblerOP
hello everybody, i created an next js app and after i add next ui, but i no style? why ?
in global.css
in next.config.js
module.exports = withPlugins([], nextConfig);
in global.css
@tailwind base;
@tailwind components;
@tailwind utilities;in next.config.js
/** @type {import('next').NextConfig} */
const withPlugins = require('next-compose-plugins');
const nextConfig = {
env: {
Token_JSON_MDP: '*******',
}
}module.exports = withPlugins([], nextConfig);