Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/postcss.config.js
2492 views
1
/**
2
* Copyright (c) 2021 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
/** @type {import('postcss-load-config').Config} */
8
const config = {
9
plugins: {
10
"postcss-import": {},
11
tailwindcss: {},
12
autoprefixer: {},
13
},
14
};
15
16
module.exports = config;
17
18