mirror of
https://github.com/vercel/commerce.git
synced 2025-08-11 03:11:23 +00:00
.vscode
assets
components
config
framework
lib
pages
public
.editorconfig
.env.template
.eslintrc
.gitignore
.prettierignore
.prettierrc
Dockerfile
README.md
codegen.bigcommerce.json
codegen.json
commerce.config.json
docker-compose.yml
global.d.ts
license.md
next-env.d.ts
next.config.js
package-lock.json
package.json
postcss.config.js
pre-push
swell-js.d.ts
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,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
}
|