mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* update node to 18.17.1 * use new dev image * fix webpack in supervisor-frontend * bump webpack to 5.88.2 in dashboard * streamline webpack versions * Fix craco config * streamline eslint versions * Update eslint config and disable for now * Enable eslint again * Update vscode-jsonrpc for browser implementation * Polyfill setimmeadiate * Remove NODE_OPTIONS env var from supervisor front end scripts * Fix css * Fix css 2 * Fix checkboxchecked * Add comment * Fix yarn.lock --------- Co-authored-by: Jean Pierre <jeanp413@hotmail.com>
17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
/**
|
|
* Copyright (c) 2021 Gitpod GmbH. All rights reserved.
|
|
* Licensed under the GNU Affero General Public License (AGPL).
|
|
* See License.AGPL.txt in the project root for license information.
|
|
*/
|
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: {
|
|
"postcss-import": {},
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|