2023-08-21 01:36:47 -05:00
|
|
|
require('dotenv').config()
|
|
|
|
|
|
|
|
/**
|
2023-08-22 04:32:52 -05:00
|
|
|
* @type {import('penpot-css-export').Config}
|
2023-08-21 01:36:47 -05:00
|
|
|
*/
|
|
|
|
const config = {
|
|
|
|
accessToken: process.env.PENPOT_ACCESS_TOKEN,
|
2023-08-22 11:19:28 -05:00
|
|
|
typographies: [
|
|
|
|
{
|
|
|
|
output: 'src/styles/typographies.css', // 👈🏻 Path where your css should be generated.
|
|
|
|
fileId: '4a499800-872e-80e1-8002-fc0b585dc061'
|
|
|
|
},
|
|
|
|
],
|
2023-08-21 01:36:47 -05:00
|
|
|
pages: [
|
|
|
|
{
|
|
|
|
output: 'src/styles/ui.css', // 👈🏻 Path where your css should be generated.
|
2023-08-22 04:36:13 -05:00
|
|
|
fileId: 'abea3ef6-4c19-808a-8003-01370d9cb586',
|
2023-08-21 01:36:47 -05:00
|
|
|
pageId: '71b1702b-2eb1-81d6-8002-f82a5f182088',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = config
|