chore: run prettier --write .

This commit is contained in:
Arvid Norlin
2024-02-19 14:24:30 +01:00
parent 7d51124b9f
commit 8a8c463452
71 changed files with 846 additions and 444 deletions
+9 -9
View File
@@ -1,9 +1,9 @@
import createJiti from "jiti"
const jiti = createJiti(new URL(import.meta.url).pathname);
const jiti = createJiti(new URL(import.meta.url).pathname)
jiti("./env/server");
jiti("./env/client");
jiti("./env/server")
jiti("./env/client")
/** @type {import('next').NextConfig} */
const nextConfig = {
@@ -22,11 +22,11 @@ const nextConfig = {
config.module.rules.push({
test: /\.(graphql|gql)/,
exclude: /node_modules/,
loader: "graphql-tag/loader"
});
loader: "graphql-tag/loader",
})
return config;
}
};
return config
},
}
export default nextConfig
export default nextConfig