Merging this separately so the commit with the tooling change is readable. This is a follow-on to #1167 which turned prettier on.
11 lines
185 B
JavaScript
11 lines
185 B
JavaScript
'use strict'
|
|
|
|
const path = require('path')
|
|
|
|
module.exports = {
|
|
font: {
|
|
// i.e. Verdana.ttf in the root of the project.
|
|
path: path.join(__dirname, '..', 'Verdana.ttf'),
|
|
},
|
|
}
|