You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/angular_devkit/build_angular/src/builders/browser-esbuild/options.ts
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -203,14 +203,19 @@ export async function normalizeOptions(
203
203
};
204
204
}
205
205
206
+
/** The list of valid config files can be found https://github.com/tailwindlabs/tailwindcss/blob/ba5454543e74a6d702ce11b410d27672c2ee4b3f/src/util/resolveConfigPath.js#L4-L9*/
207
+
consttailwindConfigFiles=[
208
+
'./tailwind.config.js',
209
+
'./tailwind.config.cjs',
210
+
'./tailwind.config.mjs',
211
+
'./tailwind.config.ts',
212
+
];
213
+
206
214
functionfindTailwindConfigurationFile(
207
215
workspaceRoot: string,
208
216
projectRoot: string,
209
217
): string|undefined{
210
218
// A configuration file can exist in the project or workspace root
0 commit comments