ten / playground /postcss.config.js
3v324v23's picture
Зафиксирована рабочая версия TEN-Agent для HuggingFace Space
87337b1
raw
history blame contribute delete
283 Bytes
/** @type {import('postcss-load-config').Config} */
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
"@minko-fe/postcss-pxtoviewport": {
viewportWidth: 375,
exclude: /node_modules/,
include: /\/src\/platform\/mobile\//,
},
},
};