mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
13 lines
194 B
JavaScript
13 lines
194 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require.resolve("prettier-plugin-astro"),
|
|
],
|
|
overrides: [
|
|
{
|
|
files: "*.astro",
|
|
options: {
|
|
parser: "astro",
|
|
},
|
|
},
|
|
],
|
|
};
|