forked from Material-MADS/mads-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostcss.config.js
More file actions
18 lines (16 loc) · 1.07 KB
/
postcss.config.js
File metadata and controls
18 lines (16 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*=================================================================================================
// Project: CADS/MADS - An Integrated Web-based Visual Platform for Materials Informatics
// Hokkaido University (2018)
// Last Update: Q3 2023
// ________________________________________________________________________________________________
// Authors: Mikael Nicander Kuwahara (Lead Developer) [2021-]
// Jun Fujima (Former Lead Developer) [2018-2021]
// ________________________________________________________________________________________________
=================================================================================================*/
//-------------------------------------------------------------------------------------------------
// load postcss plugins for easier development
//-------------------------------------------------------------------------------------------------
module.exports = {
plugins: [require('autoprefixer')],
};
//-------------------------------------------------------------------------------------------------