mirror of
https://github.com/penpot/penpot-export.git
synced 2025-01-24 15:38:54 -05:00
23 lines
586 B
JavaScript
23 lines
586 B
JavaScript
require('dotenv').config()
|
|
|
|
/**
|
|
* @type {import('penpot-css-export').Config}
|
|
*/
|
|
const config = {
|
|
accessToken: process.env.PENPOT_ACCESS_TOKEN,
|
|
typographies: [
|
|
{
|
|
output: 'src/styles/typographies.css', // 👈🏻 Path where your css should be generated.
|
|
fileId: '4a499800-872e-80e1-8002-fc0b585dc061'
|
|
},
|
|
],
|
|
pages: [
|
|
{
|
|
output: 'src/styles/ui.css', // 👈🏻 Path where your css should be generated.
|
|
fileId: 'abea3ef6-4c19-808a-8003-01370d9cb586',
|
|
pageId: '71b1702b-2eb1-81d6-8002-f82a5f182088',
|
|
},
|
|
],
|
|
}
|
|
|
|
module.exports = config
|