Signed-off-by: Rita Brugarolas <rita.brugarolas.brufau@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
17 lines
393 B
JavaScript
17 lines
393 B
JavaScript
// Copyright (C) 2024 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
const tailwindcss = require("tailwindcss");
|
|
const autoprefixer = require("autoprefixer");
|
|
|
|
const config = {
|
|
plugins: [
|
|
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
|
|
tailwindcss(),
|
|
//But others, like autoprefixer, need to run after,
|
|
autoprefixer,
|
|
],
|
|
};
|
|
|
|
module.exports = config;
|