Learning TE #1959
Unanswered
RobMoen
asked this question in
Support from community
Learning TE
#1959
Replies: 1 comment
-
Hi! Checkout the vite documentation about Building an app for Production |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Good day,
I am new to Tailwind Elements but managed to install everything using the great tutorial from Michael. I used the vite method. I created 2 html files, index.html and about.html and within the dev server it all works fine. However, when I use the command "npm run build" it generates only the index.html and not about.html. My tailwind.config looks like this:
/** @type {import('tailwindcss').Config} /
module.exports = {
content: [
"./index.html",
"./about.html",
'./components/**/.{html,js}',
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
What am I doing wrong? Thanks for helping!
Best regards, Rob
Beta Was this translation helpful? Give feedback.
All reactions