We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d5fb36 + 558a6af commit f667be0Copy full SHA for f667be0
packages/cli/src/commands/common/dev.ts
@@ -26,7 +26,7 @@ export const CommandDev = async () => {
26
});
27
const fileServer = fs.watch(process.cwd(), (e, f) => {
28
if (changingFile) return;
29
- if (f === STUCCO_FILE || f.startsWith('.env')) {
+ if (f === STUCCO_FILE || f.startsWith('.env') || f.endsWith('.graphql')) {
30
const envFile = getEnvFile();
31
changingFile = true;
32
onCreateStucco({
0 commit comments