Hi everyone, I'm having rather a strange issue where the mix build is working fine but the app.js does not seem to be including the compiled css. However, replacing mix.postCss to mix.css made the app.js includ e the css (but of course not processing the tailwind directives)
require('./bootstrap');
import store from './store/index';
import '../css/main.css';
const Vue = require('vue');
const app = new Vue({
el: '#app',
store
});