- Updated npm dependencies - Replaced `webpack.mix.js` with `webpack.config.js` - Added `postcss.config.js` - Removed the `src` directory and moved `css` and `js` to the root level of the theme - Renamed `dist` to `build` and updated in libraries file References #41
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require('postcss-import'),
|
|
require('tailwindcss'),
|
|
require('postcss-nested'),
|
|
require('autoprefixer')
|
|
]
|
|
}
|