mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 04:22:01 +00:00
RedwoodJS [v0.25.0](https://github.com/redwoodjs/redwood/releases/tag/v0.25.0) changed to a different build command: [yarn rw deploy vercel](https://redwoodjs.com/docs/cli-commands#vercel) This also updates the example to use the latest template from `created-redwood-app`.
18 lines
299 B
JavaScript
18 lines
299 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
module.exports = {
|
|
trailingComma: 'es5',
|
|
bracketSpacing: true,
|
|
tabWidth: 2,
|
|
semi: false,
|
|
singleQuote: true,
|
|
arrowParens: 'always',
|
|
overrides: [
|
|
{
|
|
files: 'Routes.js',
|
|
options: {
|
|
printWidth: 200,
|
|
},
|
|
},
|
|
],
|
|
}
|