mirror of
https://github.com/vercel/commerce.git
synced 2025-07-24 02:31:24 +00:00
.vscode
assets
components
config
framework
lib
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
.prettierrc
README.md
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
20 lines
321 B
JavaScript
20 lines
321 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'tailwindcss',
|
|
'postcss-nesting',
|
|
'postcss-flexbugs-fixes',
|
|
[
|
|
'postcss-preset-env',
|
|
{
|
|
autoprefixer: {
|
|
flexbox: 'no-2009',
|
|
},
|
|
stage: 3,
|
|
features: {
|
|
'custom-properties': false,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
}
|