2020-03-02 20:01:55 +01:00
|
|
|
const path = require('path');
|
2020-02-13 23:43:20 +01:00
|
|
|
const tailwindcss = require('tailwindcss');
|
2020-03-02 20:01:55 +01:00
|
|
|
const tailwindConfigPath = path.join(__dirname, 'tailwind.config.js');
|
2020-02-13 23:43:20 +01:00
|
|
|
|
|
|
|
|
module.exports = {
|
2020-03-02 20:01:55 +01:00
|
|
|
plugins: [tailwindcss(tailwindConfigPath), require('autoprefixer')],
|
2020-02-13 23:43:20 +01:00
|
|
|
};
|