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