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} */ 8const config = { 9 plugins: { 10 "postcss-import": {}, 11 tailwindcss: {}, 12 autoprefixer: {}, 13 }, 14}; 15 16module.exports = config; 17 18