Nuxt.jsのsrcDirを設定した状態でTailwindCSS moduleを使用する場合のconfigファイルの読み込み設定
nuxt configのsrcDirにsrc等を設定した場合、tailwind.config.tsが読み込まれていないようだった。
ドキュメントの注意書きに書かれているようにconfigPathを設定する必要がある。
If you customize the srcDir property in your nuxt.config file, you'll have to update the configPath value to '~~/tailwind.config' (~~ is the alias for rootDir) for the tailwind.config file to be recognized properly. Read more in the Issue # 114.
code:js
export default defineNuxtConfig({
srcDir: 'src',
tailwindcss: {
configPath: '~~/tailwind.config'
}
})